home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / comdemos / progs / archiboard / !BulBoard / !BBSsys / FileTask / Commands < prev    next >
Encoding:
Text File  |  1993-02-28  |  2.6 KB  |  99 lines

  1. |  command file
  2. select_dir()            130 0
  3. | allows the user to select the current directory
  4. |
  5. set_cur_dir(N)          130
  6. | sets the current directory to the number passed
  7. |
  8. join_dir()              140 0
  9. | joins the user to their current directory
  10. |
  11. list_all_dirs()         110 1
  12. | lists all directories available to the user
  13. |
  14. list_joined_dirs()      110 0
  15. | lists all the directories to which the user
  16. | is joined to
  17. |
  18. join_all_dirs()         150 0
  19. | joins the user to all available directories
  20. |
  21. join_all_dirs_ask()     150 1
  22. | asks user if they wish to be joined to each
  23. | available directory
  24. resign_dir()            170 0
  25. | resigns the user from their current directory
  26. |
  27. resign_all_dirs()       290 0
  28. | resigns the user from all their directories
  29. |
  30. resign_all_dirs_ask()   290 1
  31. | ask if the user wishes to resign from each
  32. | directory they are joined to
  33. |
  34. long_listing()          190 0
  35. | lists in long format the files in the
  36. | current directory
  37. |
  38. short_listing()         200 0
  39. | lists in short format the files in the
  40. | current directory
  41. |
  42. view_queue()            210 0
  43. | views the files in the file queue
  44. |
  45. clear_queue()           215 0
  46. | empties the file queue
  47. |
  48. remove_queue_file()     220 0
  49. | allows the user to remove a file from
  50. | the queue
  51. |
  52. download_queue()        230 0
  53. | allows the user to download their
  54. | file queue
  55. |
  56. store_queue()           270 0
  57. | stores the users queue away in file
  58. |
  59. download_file()         235 0
  60. | downloads a file, asking user for file name/number
  61. |
  62. download_file_no(F)     235
  63. | downloads the file number or filename string passed
  64. |
  65. download_filepath(S)    260
  66. | pass string to use as the path to the directory containing files
  67. | or empty string to use current internal path
  68. |
  69. upload_filepath(S)      280
  70. | same as for download
  71. |
  72. upload_file()           283 0
  73. | upload a file to current directory
  74. |
  75. show_filepath()         263 0
  76. | shows the users current system directory filepath
  77. |
  78. dir_filepath(S)         264
  79. | displays the contents of users current system filepath
  80. | directory, or the directory string passed
  81. |
  82. move_filepath(S)        267
  83. | changes the users current system filepath to the string passed
  84. | or if null string passed then the user is asked to enter
  85. | the relative movement (like *DIR)
  86. |
  87. scan_dir()              250 0
  88. | zips through in long format the new files in the directories
  89. | to which the user is joined
  90. |
  91. scan_dir_to_file(S)     295 0
  92. | sae as scan_dir() but the output is directed to the string
  93. | file passed
  94. |
  95. download_a_file(S,S,N)  300
  96. | download a single file
  97. |   1st parm = filepath, 2nd = name to download as
  98. |   3rd parm = charge rate in quota per K
  99. |