種別 | ファイル |
---|---|
説明 | 同名のファイルが存在する場合、指定された形式のナンバリングを行う |
構文 | FileNumbering(FilePath[, Format]) |
引数 | FilePath:確認するファイルパスを指定します。 Format :ナンバリング時のフォーマットを指定します。 指定しない場合、-数字の形式になります。 |
戻り値 | 存在しないファイル名を返します。 |
使用例 | dim s,ss,i s = "C:\aaa\bbb\ccc.xdw" 'ccc-2.xdw, ccc-3.xdw, ccc-4.xdwを返します。 ss = FileNumbering(s) 'ccc-0002.xdw, ccc-0003.xdw, ccc-0004.xdwを返します。 ss = FileNumbering(s, "-0000") 'ファイル保存との組み合わせ SaveFile(FileNumbering(s)) SaveFile(FileNumbering(s, "-0000")) |
実例 | |
備考 | 関連する関数(CopyFolder、CreateFolder、FolderExists、 CommonDialog、DeleteFolder、FileCopy、FileDelete、FileRename、 FileNumbering、FileExists、FileInfo、FileDir、FileLock) |