摘要:
1 获取路径的文件名 string basename(string path [, string suffix]);2 获取路径的目录 string dirname(string path);3 了解更多路径信息 array pathinfo(string path);//可以得到目录信息、文件名和文件扩展名4 确定文件大小 int filesize(string filename);//其实filename应该理解是路径,以字节为单位返回值5 计算磁盘的可用空间 float disk_free_space(string directory);//计算目录所在磁盘的可用空间6 计算磁盘... 阅读全文