aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.UsersAndRoles/Properties/Settings.Designer.cs
blob: 77bb41a9cf8f300f62ddaf2439b95ae6a879ba33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
generated by cgit v1.3.1 (git 2.54.0) at 2026-07-27 17:18:23 +0000
 


string.Format("{0}-result{1}", Path.GetFileNameWithoutExtension(OpenFilePath), FILE_EXTENSION));
                return resultFile;
            }
            return "";
        }

        public static string GetFileToSaveFlowRangeToTimeData( int extNumber)
        {
            if (File.Exists(OpenFilePath))
            {
                var ext = Path.GetExtension(OpenFilePath);
                var dir = Path.GetDirectoryName(OpenFilePath);
                var resultFile = Path.Combine(dir, string.Format("{0}_rangeToTime{1}{2}", Path.GetFileNameWithoutExtension(OpenFilePath), extNumber.ToString(), FILE_EXEL_EXTENSION));
                return resultFile;
            }
            return "";
        }


    }
}