बिना पड़ी फाइलों को कॉपी करने के लिए 'पॉवरशेल' कॉपी-आइटम कैसे बताएं


83

निम्न PowerShell स्क्रिप्ट कार्य करता है यदि संसाधन नहीं हैं।

  Copy-Item $src_dir $dst_dir$agent_folder -recurse

लेकिन अगर संसाधन हैं, तो यह कहेंगे:

+   Copy-Item <<<<  $src_dir $dst_dir$agent_folder -recurse
    + CategoryInfo          : ResourceExists: (C:\Users\Pac\Desktop\Agents\Agent0\lib:S
   tring) [Copy-Item], IOException
    + FullyQualifiedErrorId : DirectoryExist,Microsoft.PowerShell.Commands.CopyItemComm
   and

मुझे कमांड में क्या जोड़ना है ताकि यह बिना शर्त फाइलों को कॉपी कर सके?

जवाबों:



19

प्रलेखन से ( help copy-item -full):

-force <SwitchParameter>
    Allows cmdlet to override restrictions such as renaming existing files as long as security is not compromised.

    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false

4
मैं झूठी साधन लगता है कि परम अनिवार्य नहीं और झूठी साधन डिफ़ॉल्ट मान $ गलत है
fredericrous
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.