get file path in ini code example
Example 1: python get filename from path
import os
print(os.path.basename(your_path))
Example 2: get file path java
File file = new File("yourfileName");
String path = file.getAbsolutePath();
import os
print(os.path.basename(your_path))
File file = new File("yourfileName");
String path = file.getAbsolutePath();