CmdDemo.ffmpeg.GetFileName C# (CSharp) 메소드

GetFileName() 개인적인 정적인 메소드

從文件路徑中取得文件名
private static GetFileName ( string fullName ) : string
fullName string
리턴 string
        private static string GetFileName(string fullName)
        {
            fullName = fullName.Replace(@"/", @"\");
            return fullName.Substring(fullName.LastIndexOf(@"\"));
        }