Scilab 5.3.3
- Scilab help
- Files : Input/Output functions
- basename
- chdir
- copyfile
- createdir
- deletefile
- dir
- dirname
- dispfiles
- fileext
- fileinfo
- fileparts
- filesep
- findfiles
- fprintf
- fprintfMat
- fscanf
- fscanfMat
- fullfile
- fullpath
- get_absolute_file_path
- getdrives
- getlongpathname
- getrelativefilename
- getshortpathname
- %io
- isdir
- isfile
- listfiles
- listvarinfile
- ls
- maxfiles
- mclearerr
- mclose
- mdelete
- meof
- merror
- mfprintf
- mscanf
- mget
- mgetl
- mgetstr
- mkdir
- mopen
- movefile
- mput
- mputl
- mputstr
- mseek
- mtell
- newest
- pathconvert
- pathsep
- pwd
- removedir
- rmdir
- save_format
- scanf
- scanf_conversion
- sscanf
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
removedir
ディレクトリを削除
呼び出し手順
removedir('dirname') [status] = removedir('dirname','s')
説明
removedir('dirname') は カレントのディレクトリからディレクトリ dirname を削除します. ディレクトリが空でない場合, ファイルおよびサブディレクトリは削除されます. dirnameがカレントディレクトリでない場合, カレントディレクトリへの相対パスまたは dirname のフルパスを 指定してください.
[status] = removedir('dirname') はディレクトリ dirname と その中身をカレントのディレクトリから削除し, status を返します. ここで, status は成功時に %T, エラー時に %F となります.
removedir は rmdirで使用されます.
例
createdir(SCIHOME+'/Directory_test') removedir(SCIHOME+'/Directory_test')
作者
- A.C
<< pwd | Files : Input/Output functions | rmdir >> |