「File copy」の版間の差分

提供: AliceScript Wiki
ナビゲーションに移動 検索に移動
タグ: モバイル編集 モバイルウェブ編集
 
16行目: 16行目:
  
 
==説明==
 
==説明==
<code>void file_copy(string fromfilename,string tofilename,bool? allowrewrite);</code>
+
<code>void file_copy(string fromfilename,string tofilename,bool overwrite=true);</code>
  
 
=====引数=====
 
=====引数=====
  
Fromfilename コピー元のファイルの名前
+
fromfilename コピー元のファイルの名前
  
Tofilename コピー先のファイルの名前
+
tofilename コピー先のファイルの名前
  
Allowrewrite コピーの実行先にファイルが存在する場合、上書きを実行するかの値。この値は必ずしも設定する必要はありません
+
overwrite コピーの実行先にファイルが存在する場合、上書きを実行するかの値。この値は必ずしも設定する必要はありません

2022年1月16日 (日) 00:33時点における最新版

ファイルをコピーします

file_copy
名前空間 Alice.IO
アセンブリ ローカル
サポート AliceScript1


説明

void file_copy(string fromfilename,string tofilename,bool overwrite=true);

引数

fromfilename コピー元のファイルの名前

tofilename コピー先のファイルの名前

overwrite コピーの実行先にファイルが存在する場合、上書きを実行するかの値。この値は必ずしも設定する必要はありません