我遇到了这个问题......我想创建一个带有时间戳名称的新文件夹。然后我想将一堆文件移入其中。
我无法弄明白!
import shutil, os, time
timestr = time.strftime("%Y%m%d")
Sourcepath = r'Z:\\test'
if not os.path.exists(Sourcepath):
os.makedirs(Sourcepath+timestr)
source = os.listdir(Sourcepath)
destinationpath = (Sourcepath+timestr)
for files in source:
if files.endswith('.json'):
shutil.move(os.path.join(source,files),os.path.join(destinationpath,files))
答案 0 :(得分:0)
这是否可以解决您的问题。注意最后一行的缩进
$(".openWindow").click(function(){
var form = `
<form method="post">
<label for="onlynumbers">Input with numbers:</label>
<input type="text" id="onlynumbers" name="onlynumbers" value="" class="numeric" required />
</form>
`;
var $dialog = $("<div></div>").html(form).dialog({ height: 100, width: 400, title: 'Here is a problem'});
$(".numeric").numeric();
$dialog.dialog("open");
});