0

i want to create a batch file

@echo off
set /p name="Type folder name(s):
md %name%
cd p:\%name%

all lines work, but i cannot change the directiory to cd p:\%name% when i run the script thank you.

1 Answer 1

1

You need cd /d to change to a directory on another drive:

cd /d p:\%name%
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.