気になる質問をクリップする
クリップした質問は、後からいつでもMYページで確認できます。
またクリップした質問に回答があった際、通知やメールを受け取ることができます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
回答1件
0
ベストアンサー
指定されたパスが見つかりませんと出るのはなぜなのでしょうか。
c:\Users\user
直下にc
というディレクトリがないからでしょう。
ちなみにcd c:\
でcドライブ直下に移動できます。
一つ前に戻るcd -も利きません。
cd
にはそのような機能はないようです。
bat
1c:\>cd /? 2Displays the name of or changes the current directory. 3 4CHDIR [/D] [drive:][path] 5CHDIR [..] 6CD [/D] [drive:][path] 7CD [..] 8 9 .. Specifies that you want to change to the parent directory. 10 11Type CD drive: to display the current directory in the specified drive. 12Type CD without parameters to display the current drive and directory. 13 14Use the /D switch to change current drive in addition to changing current 15directory for a drive. 16 17If Command Extensions are enabled CHDIR changes as follows: 18 19The current directory string is converted to use the same case as 20the on disk names. So CD C:\TEMP would actually set the current 21directory to C:\Temp if that is the case on disk. 22 23CHDIR command does not treat spaces as delimiters, so it is possible to 24CD into a subdirectory name that contains a space without surrounding 25the name with quotes. For example: 26 27 cd \winnt\profiles\username\programs\start menu 28 29is the same as: 30 31 cd "\winnt\profiles\username\programs\start menu" 32 33which is what you would have to type if extensions were disabled. 34c:\>
投稿2017/05/24 13:48
総合スコア38339
あなたの回答
tips
太字
斜体
打ち消し線
見出し
引用テキストの挿入
コードの挿入
リンクの挿入
リストの挿入
番号リストの挿入
表の挿入
水平線の挿入
プレビュー
質問の解決につながる回答をしましょう。 サンプルコードなど、より具体的な説明があると質問者の理解の助けになります。 また、読む側のことを考えた、分かりやすい文章を心がけましょう。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/05/24 13:52