blob: 164baa1f74e729c499c19bf506eaf2218e3784d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//
// PathUtils.swift
// PrySDR
//
// Created by Jacky Jack on 29/11/2024.
//
import Foundation
//get current run directory
func getCurrentExecutableDir() -> String {
return Process().currentDirectoryPath
//return FileManager.default.currentDirectoryPath
}
|