OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / Program.cs
index ecc9c02..f2bae96 100644 (file)
@@ -41,8 +41,14 @@ namespace Handbrake
             {\r
                 string appDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake";\r
                 if (!Directory.Exists(appDir))\r
+                    Directory.CreateDirectory(appDir);\r
+\r
+                string logDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\logs";\r
+                if (!Directory.Exists(logDir))\r
+                    Directory.CreateDirectory(logDir);\r
+\r
+                if (!File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\presets.xml"))\r
                 {\r
-                    Directory.CreateDirectory(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) +  "\\HandBrake");\r
                     PresetsHandler x = new PresetsHandler();\r
                     x.updateBuiltInPresets();\r
                 }\r