home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 September / PCW0901.iso / Utilitiy / PartitionMagic / PartitionMagic6PRODEMO.ZIP / WINDOWS / SETUP / data1.cab / BootDisk_Builder / BDBUILD / BIN / VFileCmd.lis < prev   
File List  |  2000-10-10  |  5KB  |  181 lines

  1.         Virtual File System Console Utility program command summary
  2.  
  3. Syntax:
  4.     VFile [-<Switch>...] [<Command> [-<h|?> | <Parameters...>]]
  5.         -f<FileName> = Mount image file. Repeat switch for additional images.
  6.         -h,-? = Show help message.
  7.         -e = Environment. Load internal environment from system.
  8.              Environment variables can be manipulated with SET command.
  9.  
  10.     Type "VFile Help" to view list of commands.
  11.     Type "VFile <Command> -h" to view command specific help.
  12.  
  13.     If no command specified, console mode is entered.
  14.     If no image file mounted, a file named "Image.img" if exist
  15.         in current directory will be mounted.
  16.  
  17.  
  18. Image Files/Volumes related commands:
  19.  
  20. Mount
  21.  
  22.     Mount virtual image file(s).
  23.     Mounted images will have "\\.\Vf#" as volume names.
  24.     Syntax:  Mount <ImageFile> [<ImageFile2>...]
  25.  
  26. Format
  27.  
  28.     Format a mounted virtual volume.
  29.     Syntax:  Format [-4] [-8] [-2] [-s] <Drive> [BootImage]
  30.        -4 = 1.44M floppy.
  31.        -8 = 2.88M floppy.
  32.        -2 = 1.2M floppy.
  33.        -s = Default boot loader. [BootImage] will be ignored if specified.
  34.        [BootImage] = Name of an Image file containing boot sector to load.
  35.     Example: "Format \\.\Vf0" or "Format 0".
  36.  
  37. NewImage
  38.  
  39.     Create a new blank image file.
  40.     Syntax:  NewImage [-4] [-8] [-2] [-s] <FileName> [Sectors] [BootImage]
  41.        -4 = 1.44M floppy image.
  42.        -8 = 2.88M floppy image.
  43.        -2 = 1.2M floppy image.
  44.        -s = Write default boot loader.
  45.        <FileName> = Image file name to create.
  46.        [Sectors] = Size of image file in number of 512 byte sectors.
  47.                 If omitted, unless an image type switch is specified a file
  48.                 will be created that fills the media.
  49.        [BootImage] = Name of an Image file containing boot sector to load.
  50.                 Ignored if -s is specified.
  51.  
  52. ListDrives
  53.  
  54.     List Virtual File System drives and information.
  55.     Syntax:  ListDrives [-a]
  56.        -a = Show all visible drives, not just mounted virtual volumes.
  57.  
  58. CheckMedia
  59.  
  60.     Report media status.
  61.     Syntax:  CheckMedia [Drive]
  62.     Example: "CheckMedia \\.\Vf0" or "CheckMedia 0", "CheckMedia C:".
  63.  
  64.  
  65. File system access related commands:
  66.  
  67. Dir
  68.     Syntax: Dir [[[Path]\][File(s)]]
  69.  
  70. CopyFile
  71.  
  72.     Copy a single file.
  73.     Syntax:  CopyFile [-d] <SourceFile> <DestinationFile>
  74.        -d = Delay for 5 seconds every 50MB.
  75.  
  76. DelFile
  77.  
  78.     Delete a single file.
  79.     Syntax:  DelFile [-u] <FileName>
  80.        -u = Unconditionally delete R/O file.
  81.  
  82. Dup
  83.     Duplicate/Copy file(s).
  84.     Syntax:  Dup [-p] [-s] [-v] [-d] <File(s)> [DestPath]
  85.        -p = Display progress.
  86.        -s = Show status/statistics.
  87.        -v = Verbose mode. Show file names as they are copied.
  88.        -d = Delay for 5 seconds every 50MB.
  89.     Example: "Dup *.Txt \\.\Vf0" Copy from current dir to target root.
  90.              "Dup \\.\Vf0\*.Dat" Copy from drive 0 root to current dir.
  91.  
  92. Erase
  93.  
  94.     Erase/Delete file(s).
  95.     Syntax:  Erase [-u] [-q] <File(s)>
  96.        -u = Unconditionally delete R/O file(s).
  97.        -q = Quiet mode. Don't show file names as they are deleted.
  98.     Example: "Erase \\.\Vf0\*.Txt" Erase all text files in drive 0 root.
  99.  
  100. Type
  101.  
  102.     Display content of a file.
  103.     Syntax:  Type <FileName>
  104.  
  105. CreateFile
  106.  
  107.     Create a new file.
  108.     Syntax:  CreateFile [-d] [-p] <FileName> [Size] [Template]
  109.        -d = Delay for 5 seconds every 50MB.
  110.        -p = Pattern. Create with predictable data pattern.
  111.        [Size] = File size in bytes.
  112.                 If omitted, file is created that fills the media.
  113.        [Template] = Template file to duplicate at start of created file.
  114.  
  115. VerifyFile
  116.  
  117.     Verify content of a file by reading all bytes in file.
  118.     Syntax:  VerifyFile [-r] [-c] <FileName>
  119.        -c = Check for data pattern created by CreateFile command.
  120.        -r = Process file in reverse.
  121.  
  122. CompFile
  123.  
  124.     Compare two files.
  125.     Syntax:  CompFile [-r] <File1> <File2>
  126.        -r = Process files in reverse.
  127.  
  128. MakeDir
  129.  
  130.     Make/create directory.
  131.     Syntax:  MakeDir <DirName>
  132.  
  133. DelDir
  134.  
  135.     Delete directory.
  136.     Syntax:  DelDir <DirName>
  137.  
  138.  
  139. Console environment/Batch processing related commands:
  140.  
  141. Help
  142.     List available commands or help on individual commands.
  143.     Syntax: Help [Command]
  144.  
  145. Goto
  146.     Branch to new position in batch file.
  147.     Syntax: Goto <Label>
  148.     Example: "Goto LABEL" Branch execution to line beginning ':LABEL'.
  149.  
  150. If
  151.     Execute specified command if expr1 is same as expr2.
  152.     Compare is case insensitive.
  153.     Syntax: If <Expr1> <== or !=> <Expr2> <Command> [CommandArgs...]
  154.  
  155. Set
  156.     Assign value to environment variable.
  157.     Syntax: Set <Variable>=[Value]
  158.  
  159. Call
  160.     Execute commands from batch file.
  161.     Syntax: Call <BatchFile> [Args...]
  162.  
  163. Exit
  164.     End processing of batch file.
  165.  
  166. Echo
  167.     Echo text or control echo of batch file lines.
  168.     Syntax: Echo [On | Off | <Text>]
  169.     Example:
  170.        Echo ON = Turns on echo.
  171.        Echo OFF = Turns off echo.
  172.        Echo <text> = Displays text.
  173.        Echo = Displays echo state.
  174.  
  175. Rem
  176.     Remark.
  177.  
  178. Pause
  179.     Pause command processing till return pressed.
  180.     Syntax: Pause [Text]
  181.