Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
matlab コードでは、現在の作業ディレクトリにある「results」というファイルに特定の反復を行った後にファイルを生成しています。次回コードを実行したい場合、前の実行で生成されたファイルも結果フォルダーに存在します。CIではそれを次のように行います
(void) system("rm -rf results/*");
コードの実行が開始されるたびに、フォルダー「結果」のコンテンツを削除するにはどうすればよいですか? ありがとう。
system('rm -rf results/*')Cコードとまったく同じでなければなりません。
system('rm -rf results/*')