我有一个脚本,在USB驱动器上创建一个名为"视频"的文件夹,将6,500个WMV文件移动到"videos"文件夹.然后,它假设创建一个HTML页面,其中包含指向每个文件的超链接.这是我目前的例子.我正在尝试让它抓取视频目录并创建一个HTML页面,其中仅包含指向USB驱动器上本地文件的超链接.
#!/usr/bin/python
import os.path
import os
import shutil
import re
# Create the videos directory in the current location
# If the directory exists ignore it
def createDirectory():
directory = "videos"
if not os.path.isdir("./" + directory + "/"):
os.mkdir("./" + directory + "/")
print "Videos Folder Created."
else:
print "Video Folder Exists."
print "---------------------"
# Move all the files in the root directory with the .wmv extension
# to the videos folder
def moveVideos():
for file in os.listdir("."):
if os.path.splitext(file)[1] …Run Code Online (Sandbox Code Playgroud) python ×1