PHP 获取文件名和扩展名的方法

dirname(path)

path: 代表你的文件路径,必须为绝对路径,可以使用__FILE__, 表示列出当前文件的绝对路径,包含文件名

函数会返回当前文件的上一级路径,也就是除了文件名称的路径

eg:

echo __FILE__;
// 输出
// D:\phpStudy\WWW\xml_drivers\test.php
echo dirname(__FILE__);
//输出
// D:\phpStudy\WWW\xml_drivers

glob(dirname/*)

获取指定文件夹下的指定文件,包括文件夹名称,如果想获取指定文件夹下的所有xml文件, 可以使用dirname/*.xml

结果返回一个数组

可以通过下面的代码实现获取指定文件夹下的所有文件

function globDir($dirname,$type=‘‘){

if ($type==‘‘){
    //返回所有类型的文件
    $dirInfo = glob($dirname.‘/*‘);
}
else {
    //返回$type类型的文件
    $dirInfo = glob($dirname.‘/*.‘.$type);
}
foreach($dirInfo as $v){
    if (is_dir($v)) {
        globDir($v);
    }
    else {
        //echo $v."<br/>";
    }
}
}

globDir(‘C:\Users\Ryan.Zheng\Desktop\2000‘, ‘xml‘);

原文地址:https://www.cnblogs.com/ryanzheng/p/8430937.html

时间: 2024-10-12 16:08:59

PHP 获取文件名和扩展名的方法的相关文章

获取文件名的扩展名

文件名类型有:http://localhost/code/loginfile/index.ini.php?username=aaa E:\xampp\php/login.php login.php function file_extension($url) { //第一步:判断是否有问号"?" $file="";  //存储整个文件名称 if (strstr($url,"?")){ list($file)=explode("?"

java获取文件名及扩展名总结

如:文件filePath = "E:\\test\\test.dxf" 1.获取文件名 eg:获取 test.dxf 通过file对象 import java.io.File; public class test { public static void main(String[] args) { String filePath = "E:\\test\\test.dxf"; File tmpFile=new File(filePath); String fileN

C# 获取文件名及扩展名

转载自  http://www.cnblogs.com/libushuang/p/5794976.html string aFirstName = aFile.Substring(aFile.LastIndexOf("\\") + 1, (aFile.LastIndexOf(".") - aFile.LastIndexOf("\\") - 1));  //文件名 string aLastName = aFile.Substring(aFile.L

lua 获取文件名和扩展名

local str = "aaa.bbb.bbb.txt" --获取文件名 function getFileName(str) local idx = str:match(".+()%.%w+$") if(idx) then return str:sub(1, idx-1) else return str end end --获取扩展名 function getExtension(str) return str:match(".+%.(%w+)$"

C/C++ 解析文件路径 获取文件名和扩展名

1. _splitpath函数 在c或者c++编程中,常常会用到获取程序或文件的路径,比对路径做分解和合并处理,_splitpath和_makepath就可以完成这样的功能. 函数的声明 void _splitpath( const char *path, char *drive, char *dir, char *fname, char *ext ); 功能是分解路径,把你的完整路径给分割开来,就是一个对字符串进行分割的函数. 参数表 参数 描述 path Full path(完整路径) dr

Asp.Net 获取FileUpload控件的文件路径、文件名、扩展名

string fileNameNo = Path.GetFileName(FileUploadImg.PostedFile.FileName); //获取文件名和扩展名string DirectoryName = Path.GetDirectoryName(FileUploadImg.PostedFile.FileName); //获取文件所在目录string Extension = Path.GetExtension(FileUploadImg.PostedFile.FileName); //

python获取文件扩展名的方法(转)

主要介绍了python获取文件扩展名的方法,涉及Python针对文件路径的相关操作技巧.具体实现方法如下: 1 2 3 4 import os.path def file_extension(path):   return os.path.splitext(path)[1] print file_extension('C:\py\wxPython.gif') 输出结果为:.gif 原文地址:https://www.cnblogs.com/hixiaowei/p/8438930.html

python获取文件扩展名的方法

主要介绍了python获取文件扩展名的方法,涉及Python针对文件路径的相关操作技巧 import os.path def file_extension(path): return os.path.splitext(path)[1] print file_extension('C:\py\wxPython.gif') 输出结果为:.gif 原文地址:https://www.cnblogs.com/sea-stream/p/10231908.html

php 获取url的扩展名

方法一: function getExt($url){ $urlinfo = parse_url($url); $file = basename($urlinfo['path']); if(strpos($file,'.') !== false) { $ext = explode('.',$file); return $ext[count($ext)-1]; } return 'no extension'; } 测试的url: echo getExt('http://www.sina.com.c