2009-08-26 13 views
10

मैं एक बिल्ड स्क्रिप्ट लिख रहा हूं, और अगर उपयोगकर्ता की इमारत में स्क्रिप्ट में रिक्त स्थान हैं, तो सब कुछ अलग हो जाता है। इसके चारों ओर जाने के लिए, मैंने 8.3 फ़ाइल नामों का उपयोग करने के बारे में सोचा ताकि drive:\Documents and setttings\whateverdrive:\Docume~1\whatever बन जाए। वर्तमान निर्देशिका पर्यावरण चर% सीडी% पूछताछ द्वारा पाया जा सकता है।मैं बैच का उपयोग कर कार्यशील निर्देशिका को 8.3 लघु फ़ाइल नाम में कैसे बदलूं?

मैं% सीडी% को एक लघु फ़ाइल पथ में कैसे बदलूं?

उत्तर

19
for %f in ("%cd%") do @echo %~sf 

संपादित करें: अगर आप बैच फ़ाइल में उपयोग कर रहे हैं %% उपयोग करने के लिए मत भूलना। इस

for %%f in ("%cd%") do @echo %%~sf 

मेरी मशीन पर की तरह:

C:\Users\preet>cd "\Program Files" 
C:\Program Files>for %f in ("%cd%") do @echo %~sf 
C:\PROGRA~1 

अन्य विकल्प:

इसके अलावा, वैरिएबल संदर्भ के लिए प्रतिस्थापन बढ़ाया गया है। अब आप निम्न वैकल्पिक वाक्यविन्यास का उपयोग कर सकते हैं:

%~I   - expands %I removing any surrounding quotes (") 
    %~fI  - expands %I to a fully qualified path name 
    %~dI  - expands %I to a drive letter only 
    %~pI  - expands %I to a path only 
    %~nI  - expands %I to a file name only 
    %~xI  - expands %I to a file extension only 
    %~sI  - expanded path contains short names only 
    %~aI  - expands %I to file attributes of file 
    %~tI  - expands %I to date/time of file 
    %~zI  - expands %I to size of file 
    %~$PATH:I - searches the directories listed in the PATH 
        environment variable and expands %I to the 
        fully qualified name of the first one found. 
        If the environment variable name is not 
        defined or the file is not found by the 
        search, then this modifier expands to the 
        empty string 

The modifiers can be combined to get compound results: 

    %~dpI  - expands %I to a drive letter and path only 
    %~nxI  - expands %I to a file name and extension only 
    %~fsI  - expands %I to a full path name with short names only 
    %~dp$PATH:I - searches the directories listed in the PATH 
        environment variable for %I and expands to the 
        drive letter and path of the first one found. 
    %~ftzaI  - expands %I to a DIR like output line 
+1

यह खुद की तलाश में था - आपको आश्चर्य होगा कि 'for' और कमांड प्रॉम्प्ट के लिए कितना कठिन googling है। बैचफाइल में% s से %% से बचें। – Will

+1

मुझे यह एक त्रुटि संदेश के रूप में मिलता है: इस समय सीडी ~ एसएफ अप्रत्याशित था। – Geo

+0

चीयर्स करेंगे। मैं यह करने के लिए भूलना जारी रखता हूँ। –

-3

बेहतर: अपने सभी पथों के आस-पास उद्धरण वर्ण (") का उपयोग करें।

+0

यह समझाना मुश्किल है, लेकिन यह एक विकल्प नहीं है। – Geo

+1

ओपी के सवाल का जवाब नहीं देता है, यह समझाता नहीं है कि यह उन परिस्थितियों में बेहतर क्यों है जहां यह काम करता है, और हमेशा काम नहीं करता है। –

संबंधित मुद्दे