获取文件路径:
CString strPath;
int n=m_strOriFileName.ReverseFind('\\')+1;
strPath=m_strOriFileName.Left(n);
获取文件名:
CString strFile;
int n=m_strUntFileName.GetLength()-m_strOriFileName.ReverseFind('\\')-1;
strFile=m_strOriFileName.Right(n);
同理,获取文件后缀名则为:
CString strFileType;
int n=m_strUntFileName.GetLength()-m_strOriFileName.ReverseFind('.')-1;
strFileType=m_strOriFileName.Right(n);
CString strPath;
int n=m_strOriFileName.ReverseFind('\\')+1;
strPath=m_strOriFileName.Left(n);
获取文件名:
CString strFile;
int n=m_strUntFileName.GetLength()-m_strOriFileName.ReverseFind('\\')-1;
strFile=m_strOriFileName.Right(n);
同理,获取文件后缀名则为:
CString strFileType;
int n=m_strUntFileName.GetLength()-m_strOriFileName.ReverseFind('.')-1;
strFileType=m_strOriFileName.Right(n);