ShellBrowser Delphi Components Documentation
ContentsIndexHome
Example 1

The following sample shows how to copy a single file to the root of drive D:</c>:

  JamFileOperation.Operation := otCopy;
  JamFileOperation.SourceFiles.Add('C:\Windows\explorer.exe'); // You may add more of this line or use AddStrings()
  JamFileOperation.Destination := 'D:\';
  JamFileOperation.Execute();