You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aws-encryption-sdk-cli 1.0.2.7
Windows 10.0.14393.1884
PowerShell 5.0.14393.1884
Related to: #65
The README and AWS Encryption SDK docs say that the CLI metadata contains the full path to the input and output files. This might be a misunderstanding of "full path."
When my working directory is: C:\test and my input file is C:\test\secret.txt, I expect the full path to my input file to be C:\test\secret.txt.
Hmm, I thought checked this...apparently not. We'll want to make sure this is covered by tests before applying, but for reference while it's fresh in my head, the fix for this will be to update source file[1] and destination file[2] open calls to wrap the filename in os.path.abspath (we want abspath, not realpath so it displays as the file the caller specified rather than displaying the actual file following any symlinks).
mattsb42-aws
changed the title
Metadata does not contain full path to input and output files (Windows)
Metadata does not contain full path to input and output files
Nov 27, 2017
aws-encryption-sdk-cli 1.0.2.7
Windows 10.0.14393.1884
PowerShell 5.0.14393.1884
Related to: #65
The README and AWS Encryption SDK docs say that the CLI metadata contains the full path to the input and output files. This might be a misunderstanding of "full path."
When my working directory is: C:\test and my input file is C:\test\secret.txt, I expect the full path to my input file to be C:\test\secret.txt.
Instead, the value of the input node in the metadata is:
secret.txt
The text was updated successfully, but these errors were encountered: