473,785 Members | 2,309 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SHFileOperation Problem in C# (FOF_SIMPLEPROG RESS )

1 New Member
I'm using SHFileOperation in my project. Everything is ok but something goes wrong when I want to use FOF_SIMPLEPROGR ESS falg. when I set it it doesn't work. I can't see nothing! if I use ansi version(without CharSet) it generates an exception!!

here is my code:
Expand|Select|Wrap|Line Numbers
  1.  
  2.         [StructLayout(LayoutKind.Sequential,CharSet=CharSet.Unicode)]
  3.         public struct SHFILEOPSTRUCT
  4.         {
  5.             public IntPtr hwnd;
  6.             public UInt32 wFunc;
  7.             [MarshalAs(UnmanagedType.LPWStr)]public string pFrom;
  8.             [MarshalAs(UnmanagedType.LPWStr)]public string pTo;
  9.             public UInt16 fFlags;
  10.             public Int32 fAnyOperationsAborted;
  11.             public IntPtr hNameMappings;
  12.             [MarshalAs(UnmanagedType.LPWStr)]public string lpszProgressTitle;
  13.         }        
  14. public class FileOperation
  15. {
  16.       public const UInt16 FO_MOVE = 0x0001;
  17.       public const UInt16 FO_COPY = 0x0002;
  18.       public const UInt16 FO_DELETE = 0x0003;
  19.       public const UInt16 FO_RENAME = 0x0004;
  20. }
  21.  
  22. public class FILEOP_FLAGS
  23. {
  24.  
  25.      public const UInt16 FOF_MULTIDESTFILES = 0x0001;
  26.      public const UInt16 FOF_CONFIRMMOUSE = 0x0002;
  27.      public const UInt16 FOF_SILENT = 0x0004;  // don't create progress/report
  28.      public const UInt16 FOF_RENAMEONCOLLISION = 0x0008;
  29.      public const UInt16 FOF_NOCONFIRMATION = 0x0010; 
  30.      public const UInt16 FOF_WANTMAPPINGHANDLE = 0x0020;             
  31.      public const UInt16 FOF_ALLOWUNDO = 0x0040;
  32.      public const UInt16 FOF_FILESONLY = 0x0080; // on *.*, do only files
  33.      public const UInt16 FOF_SIMPLEPROGRESS = 0x0100; 
  34.      public const UInt16 FOF_NOCONFIRMMKDIR = 0x0200; 
  35.      public const UInt16 FOF_NOERRORUI = 0x0400; // don't put up error UI
  36.      public const UInt16 FOF_NOCOPYSECURITYATTRIBS = 0x0800; 
  37.      public const UInt16 FOF_NORECURSION = 0x1000;     
  38.      public const UInt16 FOF_NO_CONNECTED_ELEMENTS = 0x2000; 
  39.      public const UInt16 FOF_WANTNUKEWARNING = 0x4000;          
  40.      public const UInt16 FOF_NORECURSEREPARSE = 0x8000;
  41. }
  42.  
  43. [DllImport("Shell32.dll", CharSet = CharSet.Unicode)]
  44. public static extern int SHFileOperation([MarshalAs(UnmanagedType.Struct)]ref SHFILEOPSTRUCT lpFileOp);

I'm using it like this:

Expand|Select|Wrap|Line Numbers
  1. FileFolder.SHFILEOPSTRUCT str = new FileFolder.SHFILEOPSTRUCT();
  2.  
  3. str.fFlags =  FileFolder.FILEOP_FLAGS.FOF_SIMPLEPROGRESS;
  4. str.pFrom = "c:\\test1.txt\0\0";
  5. str.pTo = "d:\\test1.txt\0\0";
  6. str.hwnd = this.Handle;
  7. str.fAnyOperationsAborted = 0;
  8. str.hNameMappings = IntPtr.Zero;
  9. //it does'nt apper in the dialog box
  10. str.lpszProgressTitle = "yesssssssssssssss";
  11. str.wFunc = FileFolder.FileOperation.FO_COPY;
  12. FileFolder.SHFileOperation(ref str);
  13. if (str.fAnyOperationsAborted!=0)
  14. {
  15.         MessageBox.Show("Abroted");
  16. }
Mar 1 '08 #1
0 2441

Sign in to post your reply or Sign up for a free account.

Similar topics

1
3495
by: mt | last post by:
How can i use the "SHFileOperation" with vb.net. i use the below code; but i get the error " Object reference not set to an instance of an object" please advise (and can i use this api for multiple file operations?) Public Const FO_DELETE = &H3 Public Const FOF_ALLOWUNDO = &H40 Public Const FOF_NOALLOWUNDO = 0 Public Const FO_MOVE = &H1
0
1621
by: avishay | last post by:
Hi All, I want to use SHFileOperation using Python and Win32 extentions, in order to move a file to the trash can. The function itself can be accessed by importing win32com.shell.shell. However, I cannot find anywhere the SHFILEOPSTRUCT. This structure is mentioned in the documentation of the Win32 extentions, but I can't find a way to access it. I would appreciate your help. If there's an alternative way to send a file to the trash can,...
1
3874
by: John Ericson | last post by:
I am using SHFileOperation() to copy files from the local hard drive a network share using a mapped drive. I want to set the up as a batch process with no user intervention. I have using the fFlags of FOF_NOCONFIRMATION | FOF_NOCONFIRMMKDIR | FOF_SILENT | FOF_NOERRORUI. When I added the FOF_NOERRORUI flag and a call to SHFileOperation() fails; all subsequent calls to the function fail with the same error code. Remove the FOF_NOERRORUI flag...
3
1787
by: Lespaul36 | last post by:
I know that this is the API to use..is there a way to use it to delete an entire directory instead of just a file?
2
1638
by: Lespaul36 | last post by:
Is there a way to use shfileoperation to delete an entire folder instead of just the files?
2
1454
by: RichardF | last post by:
I have a simple function to copy a file. If I call this with the following paramerters... psFrom = C:\12345678901234567890.abc psTo = C:\12345678901234567890.xyz.abc The TO file ends up being C:\12345678.abc Any ideas?
1
2224
by: David S. | last post by:
Hi, I have a program that copy files using SHFileOperation, but my problem begins when i want copy files from another user. How can i do to copy files if i know the user and password? Thanks
0
1463
by: =?Utf-8?B?TkVXMi5ORVQ=?= | last post by:
I have a .NET component (VC++) with native C++ at it's core. The native C++ code makes a call to SHFileOperation to delete a directory and it's contents. When I host the .NET component in a VB app, and the SHFileOperation delete is called, the application hangs forever unless I have the "Enable Unmanaged code debugging" project setting on. Note the hang only occurs when I'm running the VB app through the debugger. What gives? Thanks...
1
3240
by: sambarker123 | last post by:
Hi all I am tring to copy a file.The code is as below int _tmain(int argc, _TCHAR* argv) { string s3,s4; s3="C:\\test\\to"; s4="C:\\test\\from\\sam.txt";
0
9646
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10350
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10097
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9957
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8983
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7505
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5518
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4055
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2887
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.