How does Finder keep track of downloaded files' original URLs?
When you open the info window, i.e. Get Info, of a downloaded file, Finder will show you the downloaded origin, called Where from. This information is there even the file is moved or slightly modified. How does Finder achieve this? Is it a feature of the file system?
finder
add a comment |
When you open the info window, i.e. Get Info, of a downloaded file, Finder will show you the downloaded origin, called Where from. This information is there even the file is moved or slightly modified. How does Finder achieve this? Is it a feature of the file system?
finder
I also found a similar question from a while ago: apple.stackexchange.com/questions/110239/…
– jackxujh
Dec 6 '18 at 7:43
Also, for developers, this may help: stackoverflow.com/questions/52584510/…. The documentation is here: developer.apple.com/documentation/coreservices/…
– jackxujh
Dec 6 '18 at 7:44
add a comment |
When you open the info window, i.e. Get Info, of a downloaded file, Finder will show you the downloaded origin, called Where from. This information is there even the file is moved or slightly modified. How does Finder achieve this? Is it a feature of the file system?
finder
When you open the info window, i.e. Get Info, of a downloaded file, Finder will show you the downloaded origin, called Where from. This information is there even the file is moved or slightly modified. How does Finder achieve this? Is it a feature of the file system?
finder
finder
edited Dec 5 '18 at 23:30
jackxujh
asked Dec 5 '18 at 23:26
jackxujhjackxujh
458112
458112
I also found a similar question from a while ago: apple.stackexchange.com/questions/110239/…
– jackxujh
Dec 6 '18 at 7:43
Also, for developers, this may help: stackoverflow.com/questions/52584510/…. The documentation is here: developer.apple.com/documentation/coreservices/…
– jackxujh
Dec 6 '18 at 7:44
add a comment |
I also found a similar question from a while ago: apple.stackexchange.com/questions/110239/…
– jackxujh
Dec 6 '18 at 7:43
Also, for developers, this may help: stackoverflow.com/questions/52584510/…. The documentation is here: developer.apple.com/documentation/coreservices/…
– jackxujh
Dec 6 '18 at 7:44
I also found a similar question from a while ago: apple.stackexchange.com/questions/110239/…
– jackxujh
Dec 6 '18 at 7:43
I also found a similar question from a while ago: apple.stackexchange.com/questions/110239/…
– jackxujh
Dec 6 '18 at 7:43
Also, for developers, this may help: stackoverflow.com/questions/52584510/…. The documentation is here: developer.apple.com/documentation/coreservices/…
– jackxujh
Dec 6 '18 at 7:44
Also, for developers, this may help: stackoverflow.com/questions/52584510/…. The documentation is here: developer.apple.com/documentation/coreservices/…
– jackxujh
Dec 6 '18 at 7:44
add a comment |
1 Answer
1
active
oldest
votes
In the metadata associated to a file. Use xattr from the command line to see and manipulate the metadata. Using ‘get info’ in the GUI is not equivalent, but should allow you to see some metadata attributes, including the originating URL.
Where is the metadata stored then?
– jackxujh
Dec 5 '18 at 23:29
@jackxujh it s a part of the file itself
– Francis from ResponseBase
Dec 5 '18 at 23:30
Thanks! I got it! I can run$ xattr -l cat_video.mp4
to show a list of attributes in both hex and text, or without-l
to show only name of attributes. And other parameters with other usages as well!
– jackxujh
Dec 5 '18 at 23:38
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "118"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fapple.stackexchange.com%2fquestions%2f344843%2fhow-does-finder-keep-track-of-downloaded-files-original-urls%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
In the metadata associated to a file. Use xattr from the command line to see and manipulate the metadata. Using ‘get info’ in the GUI is not equivalent, but should allow you to see some metadata attributes, including the originating URL.
Where is the metadata stored then?
– jackxujh
Dec 5 '18 at 23:29
@jackxujh it s a part of the file itself
– Francis from ResponseBase
Dec 5 '18 at 23:30
Thanks! I got it! I can run$ xattr -l cat_video.mp4
to show a list of attributes in both hex and text, or without-l
to show only name of attributes. And other parameters with other usages as well!
– jackxujh
Dec 5 '18 at 23:38
add a comment |
In the metadata associated to a file. Use xattr from the command line to see and manipulate the metadata. Using ‘get info’ in the GUI is not equivalent, but should allow you to see some metadata attributes, including the originating URL.
Where is the metadata stored then?
– jackxujh
Dec 5 '18 at 23:29
@jackxujh it s a part of the file itself
– Francis from ResponseBase
Dec 5 '18 at 23:30
Thanks! I got it! I can run$ xattr -l cat_video.mp4
to show a list of attributes in both hex and text, or without-l
to show only name of attributes. And other parameters with other usages as well!
– jackxujh
Dec 5 '18 at 23:38
add a comment |
In the metadata associated to a file. Use xattr from the command line to see and manipulate the metadata. Using ‘get info’ in the GUI is not equivalent, but should allow you to see some metadata attributes, including the originating URL.
In the metadata associated to a file. Use xattr from the command line to see and manipulate the metadata. Using ‘get info’ in the GUI is not equivalent, but should allow you to see some metadata attributes, including the originating URL.
answered Dec 5 '18 at 23:29
Francis from ResponseBaseFrancis from ResponseBase
51626
51626
Where is the metadata stored then?
– jackxujh
Dec 5 '18 at 23:29
@jackxujh it s a part of the file itself
– Francis from ResponseBase
Dec 5 '18 at 23:30
Thanks! I got it! I can run$ xattr -l cat_video.mp4
to show a list of attributes in both hex and text, or without-l
to show only name of attributes. And other parameters with other usages as well!
– jackxujh
Dec 5 '18 at 23:38
add a comment |
Where is the metadata stored then?
– jackxujh
Dec 5 '18 at 23:29
@jackxujh it s a part of the file itself
– Francis from ResponseBase
Dec 5 '18 at 23:30
Thanks! I got it! I can run$ xattr -l cat_video.mp4
to show a list of attributes in both hex and text, or without-l
to show only name of attributes. And other parameters with other usages as well!
– jackxujh
Dec 5 '18 at 23:38
Where is the metadata stored then?
– jackxujh
Dec 5 '18 at 23:29
Where is the metadata stored then?
– jackxujh
Dec 5 '18 at 23:29
@jackxujh it s a part of the file itself
– Francis from ResponseBase
Dec 5 '18 at 23:30
@jackxujh it s a part of the file itself
– Francis from ResponseBase
Dec 5 '18 at 23:30
Thanks! I got it! I can run
$ xattr -l cat_video.mp4
to show a list of attributes in both hex and text, or without -l
to show only name of attributes. And other parameters with other usages as well!– jackxujh
Dec 5 '18 at 23:38
Thanks! I got it! I can run
$ xattr -l cat_video.mp4
to show a list of attributes in both hex and text, or without -l
to show only name of attributes. And other parameters with other usages as well!– jackxujh
Dec 5 '18 at 23:38
add a comment |
Thanks for contributing an answer to Ask Different!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fapple.stackexchange.com%2fquestions%2f344843%2fhow-does-finder-keep-track-of-downloaded-files-original-urls%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I also found a similar question from a while ago: apple.stackexchange.com/questions/110239/…
– jackxujh
Dec 6 '18 at 7:43
Also, for developers, this may help: stackoverflow.com/questions/52584510/…. The documentation is here: developer.apple.com/documentation/coreservices/…
– jackxujh
Dec 6 '18 at 7:44