#322 kimeneti almappa nagybetus
authorvasary.daniel <TFS\vasary.daniel>
Wed, 6 Apr 2022 08:41:34 +0000 (08:41 +0000)
committervasary.daniel <TFS\vasary.daniel>
Wed, 6 Apr 2022 08:41:34 +0000 (08:41 +0000)
git-tfs-id: [http://tfs.userrendszerhaz.hu:8080/tfs/DefaultCollection]$/MediaCube;C33133

client/MaestroShared/Configuration/ConfigurationInfo.cs
client/MaestroShared/Properties/AssemblyInfo.cs
client/MaestroShared/Targets/UNCTargetProcessor.cs

index e87587e0bc75a81ab2067fbda10c7c652e03f018..0abf1da9c76ef90d06d8a50affba67fa82022ba3 100644 (file)
@@ -130,6 +130,7 @@ namespace MaestroShared.Configuration {
         public int SourceNexioKillDateDays { get; set; }\r
         public bool MoveToFolder { get; set; }\r
         public string ForceMediaType { get; set; }\r
+        public bool ForceUpperCaseSubFolderName { get; set; } //a dinamikusan generalt kimeneti mappa nevet nagybetusse konvertalja \r
     }\r
 \r
     public class Connection {\r
index 23e2543da5e3aff9be99786005256160c3b4c6cc..5da145e3cddc6d56491f4c0987c82f0e2934e6da 100644 (file)
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
 // You can specify all the values or you can default the Build and Revision Numbers\r
 // by using the '*' as shown below:\r
 // [assembly: AssemblyVersion("1.0.*")]\r
-[assembly: AssemblyVersion("2.1.1.0")]\r
-[assembly: AssemblyFileVersion("2.1.1.0")]\r
+[assembly: AssemblyVersion("2.1.1.1")]\r
+[assembly: AssemblyFileVersion("2.1.1.1")]\r
index 1d33242a7356b13b80f3825e23ac49918b22f649..e8b0a6217fd845709c4e6c4169e5a4bfb6422d46 100644 (file)
@@ -341,6 +341,12 @@ namespace MaestroShared.Targets {
             if (String.IsNullOrEmpty(Parameters.TargetConfig.SubFolderFormat))\r
                 return result;\r
             string subFolderName = Slash(GetDynamicText(Parameters.TargetConfig.SubFolderFormat));\r
+\r
+            //220406 #322\r
+            if (Parameters.TargetConfig.ForceUpperCaseSubFolderName) {\r
+                subFolderName = subFolderName.ToUpper();\r
+            }\r
+\r
             string[] segments = subFolderName.Split(SLASH[0]);\r
             string[] formats = Parameters.TargetConfig.SubFolderFormat.Replace(BACKSLASH, SLASH).Split(SLASH[0]);\r
             for (int i = 0; i < segments.Length; i++) {\r