#フォルダ作成
#include <stdio.h>
#include <direct.h>
void main(){
if (_mkdir("c:\\Newfolder") == 0)
printf("フォルダを作成しました。\n");
else
printf("フォルダ作成に失敗しました。\n");
}
#実行結果
フォルダを作成しました。
フォルダ作成に失敗しました。
Go to list of users who liked
More than 5 years have passed since last update.
#フォルダ作成
#include <stdio.h>
#include <direct.h>
void main(){
if (_mkdir("c:\\Newfolder") == 0)
printf("フォルダを作成しました。\n");
else
printf("フォルダ作成に失敗しました。\n");
}
#実行結果
フォルダを作成しました。
フォルダ作成に失敗しました。
Register as a new user and use Qiita more conveniently
Go to list of users who liked