mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-18 10:07:12 +00:00
10 lines
228 B
Python
10 lines
228 B
Python
import os
|
|
|
|
# get the absolute path of the script file
|
|
script_path = os.path.abspath(__file__)
|
|
|
|
# get the directory of the script file
|
|
script_dir = os.path.dirname(script_path)
|
|
|
|
print("Directory of the script file:", script_dir)
|