configuration_dataを保存するために、次のような分離されたstoeageドメインスコープを使用します。
IsolatedStorageFile isoFile =
IsolatedStorageFile.GetUserStoreForDomain();
しかし、時々データを保存すると、次のようになります。
System.Reflection.TargetInvocationException: Exception has been thrown by the
target of an invocation. ---> System.IO.PathTooLongException: The specified path,
file name, or both are too long. The fully qualified file name must be less than
260 characters, and the directory name must be less than 248 characters.
at System.IO.PathHelper.Append(Char value)
at System.IO.Path.NormalizePath(String path, Boolean fullCheck, Int32 maxPathLength)
ファイル名が長すぎます。しかし、私はそれを制御することはできません。また、ClickOnceを使用していないため、アプリケーションスコープを使用できません。
だから私は何をすべきですか?ありがとう