终端一体化运控平台
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

30 righe
754 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmart.VariableManager
  8. {
  9. public class FileConfigModel
  10. {
  11. public static string ConstPath = string.Empty;
  12. public static string GetPath
  13. {
  14. get
  15. {
  16. string ReturnValue = null;
  17. if (Directory.Exists(ConstPath))
  18. {
  19. string path = $"{ConstPath}\\AccessFile\\JSON";
  20. Directory.CreateDirectory(path);
  21. ReturnValue = $"{ConstPath}\\AccessFile\\JSON\\CommunicationPar.json";
  22. }
  23. return ReturnValue;
  24. }
  25. }
  26. }
  27. }