linux下用shell获取指定目录下的文件名代码:
#!/bin/sh
#============ get the file name ===========#
FolderPath="/home/data"
for fileName in ${FolderPath}/*; do
tempFile=`basename $fileName`
echo $tempFile
done
#==========================================#
该方法在后续的用于linux环境下测试会有帮助。
Linux获取指定目录的父目录:http://www.linuxdiyf.com/linux/1383.html