วันอาทิตย์ที่ 14 กุมภาพันธ์ พ.ศ. 2559

Command line : MD or MKDIR

MD หรือ MKDIR

Make Directory - Creates a new folder. คำสั่งสร้างโฟลเดอร์ใหม่

Syntax
        MD [drive:]path

Key
 The path can consist of any valid characters up to the maximum path length available

 You should avoid using the following characters in folder names - they are known to cause problems
  คุณควรหลีกเลี่ยงตัวอักษรนี้ในการตั้งชื่อโฟล์เดอร์ อาจจะมีปัญหาภายหลัง
© ® " - & ' ^ ( ) and @

Many extended characters will not be recognised by older 16 bit windows applications.

The maximum length of a full pathname (folders and filename) under NTFS or FAT is 260 characters.
ความยาวสูงสุดของชื่อ PATH (ทั้งโฟล์เดอร์และชื่อไฟล์)ของ NTFS หรือ FAT คือ 260ตัว หากตั้งเกินระบบจะเตือน "is to long"

 Folder names are not case sensitive, but only folder names longer than 8 characters will always retain their case, as typed.
ชื่อโฟล์เดอร์ที่ตั้งขึ้นไม่สนใจเรื่องของอักษรตัวเล็กและตัวใหญ่
C:\temp> MD MyFolder

การใช้คำสั่งนี้จะสร้างโฟล์เดอร์แยกเป็น 3 โฟล์เดอร์คือ
C:\temp> MD Alpha Beta Gamma

จะสร้างออกมาแบบนี้

C:\temp\Alpha\
C:\temp\Beta\
C:\temp\Gamma\

ไม่ใช่ X Alpha Beta Gamma    X
หากเราต้องการชื่อโฟล์เดอร์แบบนี้ ต้องใช่คำสั่ง
MD "Alpha Beta Gamma"



Make an entire path
MD creates any intermediate directories in the path, if needed.
For example, assuming \utils does not exist then:
ถ้าเราต้องการสร้างโฟล์และมีโฟล์เดอร์ย่อยๆอยู่ข้างในโดยปกติเราจะสร้างที่ละโฟล์เดอร์แล้วจึงเข้าไปสร้างเพิ่มตามที่เราต้องการดังเช่นตัวอย่าง


md \utils   สร้างโฟลเดอร์
cd \utils    เข้าโฟลเดอร์
md downloads สร้างโฟลเดอร์
cd downloads เข้าโฟลเดอร์
md Editor สร้างโฟลเดอร์

เช่นเดียวกับที่เราพิมพ์คำสั่งนี้
MD \utils\downloads\Editor

for long filenames include quotes
สำหรับชื่อไฟล์ที่ยาวใช้ฟันหนูด้วยครับ
MD "\utils\downloads\Super New Editor"


You cannot create a folder with the same name as any of the following devices:
คุณไม่สามารถสร้างโฟล์เดอร์แล้วตั้งชื่อเหมือนกับอุปกรณ์นี้ได้ เพราะระบบ DOS ได้จองการใช้งานไว้
CON, PRN, LPT1, LPT2 ..LPT9, COM1, COM2 ..COM9

ไม่มีความคิดเห็น:

แสดงความคิดเห็น