来源目录:
C:\srcDir
目标目录:
C:\Users\'unknown'\targetDir
,'unknown'=任何名称(不是子路径)
将源目录复制到目标的脚本是什么?
答案 0 :(得分:1)
{% extends 'header.html' %}
{% block content %}
<div class="alert alert-warning alert-dismissible" role="alert">
<h4>Error!</h4><p>Invalid Submission</p>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<script type="text/javascript">
$(".alert").alert('close')
</script>
{% endblock %}
是您可以使用的环境变量。
即。 目标目录:
%userprofile%
您可以在提示符下键入set并按Enter键以查看您可以使用的环境变量。
如果您只是想要这个部分,那么请看%userprofile%\targetDir
这是什么部分。
对于目录副本,您可以使用xcopy,即
%username%
在提示中输入xcopy "C:\srcDir" "%userprofile%\targetDir"
以供使用的可用参数。