エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
作業ディレクトリを変更する – C言語入門講座
プログラム 例 #include <stdio.h> #include <unistd.h> int main(int argc, char **argv) { int retu... プログラム 例 #include <stdio.h> #include <unistd.h> int main(int argc, char **argv) { int return_code = 0; if (argc == 2) { if (chdir(*(argv+1)) == 0) { printf('カレントディレクトリの変更に成功しました\n'); } else { printf('カレントディレクトリの変更に失敗しました\n'); perror(''); return_code = 1; } } else { printf('実行時引数の数が不当です\n'); return_code = 2; } return return_code; } 例の実行結果 $ ls -ld DIR1 DIR2 ls: cannot access DIR1: そのようなファイルやディレクトリはあ