PersistedFiles.Names.Unix.cs 645 B

1234567891011121314151617
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. namespace System.IO
  5. {
  6. internal static partial class PersistedFiles
  7. {
  8. // Temporary data, /tmp/.dotnet/corefx
  9. // User-persisted data, ~/.dotnet/corefx/
  10. // System-persisted data, /etc/dotnet/corefx/
  11. internal const string TopLevelDirectory = "dotnet";
  12. internal const string TopLevelHiddenDirectory = "." + TopLevelDirectory;
  13. internal const string SecondLevelDirectory = "corefx";
  14. }
  15. }