Finder shows different file size compared to terminal
I have a folder called 'objects' in my mac.
When I check the contents of it in the terminal it's showing like this.
Clearly object folder shows 4.1K
However when I see it in the finder,
It shows, 26.3 MB
What's the reason for the significant increase in the size in the finder?
terminal mac finder unix filesystem
New contributor
add a comment |
I have a folder called 'objects' in my mac.
When I check the contents of it in the terminal it's showing like this.
Clearly object folder shows 4.1K
However when I see it in the finder,
It shows, 26.3 MB
What's the reason for the significant increase in the size in the finder?
terminal mac finder unix filesystem
New contributor
What did you aliasls
to? The output you show is not standard for a simplels
.
– nohillside♦
50 mins ago
add a comment |
I have a folder called 'objects' in my mac.
When I check the contents of it in the terminal it's showing like this.
Clearly object folder shows 4.1K
However when I see it in the finder,
It shows, 26.3 MB
What's the reason for the significant increase in the size in the finder?
terminal mac finder unix filesystem
New contributor
I have a folder called 'objects' in my mac.
When I check the contents of it in the terminal it's showing like this.
Clearly object folder shows 4.1K
However when I see it in the finder,
It shows, 26.3 MB
What's the reason for the significant increase in the size in the finder?
terminal mac finder unix filesystem
terminal mac finder unix filesystem
New contributor
New contributor
New contributor
asked 1 hour ago
Prajwal
61
61
New contributor
New contributor
What did you aliasls
to? The output you show is not standard for a simplels
.
– nohillside♦
50 mins ago
add a comment |
What did you aliasls
to? The output you show is not standard for a simplels
.
– nohillside♦
50 mins ago
What did you alias
ls
to? The output you show is not standard for a simple ls
.– nohillside♦
50 mins ago
What did you alias
ls
to? The output you show is not standard for a simple ls
.– nohillside♦
50 mins ago
add a comment |
1 Answer
1
active
oldest
votes
You have to enter the command du -sh *
instead of ls
to get the actual size of the folders in your current directory (the sum of the files size they contain).
The command ls
shows file size, but it has a different meaning for folders. It actually shows the size allocated for the directory to store metadata (mainly the index) of the files it contains.
New contributor
Oh. When I try to transfer the folder to drive, it's actually transferring the entire 26 MB. Is there anyway I can transfer only the actual file size i.e. 4KB?
– Prajwal
1 hour ago
@Prajwal 26 MB is the actual size of your folder with all its content. The only way to reduce its size is to compress it.
– Yoric
1 hour ago
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
});
}
});
Prajwal is a new contributor. Be nice, and check out our Code of Conduct.
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%2f346963%2ffinder-shows-different-file-size-compared-to-terminal%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
You have to enter the command du -sh *
instead of ls
to get the actual size of the folders in your current directory (the sum of the files size they contain).
The command ls
shows file size, but it has a different meaning for folders. It actually shows the size allocated for the directory to store metadata (mainly the index) of the files it contains.
New contributor
Oh. When I try to transfer the folder to drive, it's actually transferring the entire 26 MB. Is there anyway I can transfer only the actual file size i.e. 4KB?
– Prajwal
1 hour ago
@Prajwal 26 MB is the actual size of your folder with all its content. The only way to reduce its size is to compress it.
– Yoric
1 hour ago
add a comment |
You have to enter the command du -sh *
instead of ls
to get the actual size of the folders in your current directory (the sum of the files size they contain).
The command ls
shows file size, but it has a different meaning for folders. It actually shows the size allocated for the directory to store metadata (mainly the index) of the files it contains.
New contributor
Oh. When I try to transfer the folder to drive, it's actually transferring the entire 26 MB. Is there anyway I can transfer only the actual file size i.e. 4KB?
– Prajwal
1 hour ago
@Prajwal 26 MB is the actual size of your folder with all its content. The only way to reduce its size is to compress it.
– Yoric
1 hour ago
add a comment |
You have to enter the command du -sh *
instead of ls
to get the actual size of the folders in your current directory (the sum of the files size they contain).
The command ls
shows file size, but it has a different meaning for folders. It actually shows the size allocated for the directory to store metadata (mainly the index) of the files it contains.
New contributor
You have to enter the command du -sh *
instead of ls
to get the actual size of the folders in your current directory (the sum of the files size they contain).
The command ls
shows file size, but it has a different meaning for folders. It actually shows the size allocated for the directory to store metadata (mainly the index) of the files it contains.
New contributor
edited 49 mins ago
nohillside♦
50.8k13109148
50.8k13109148
New contributor
answered 1 hour ago
Yoric
1563
1563
New contributor
New contributor
Oh. When I try to transfer the folder to drive, it's actually transferring the entire 26 MB. Is there anyway I can transfer only the actual file size i.e. 4KB?
– Prajwal
1 hour ago
@Prajwal 26 MB is the actual size of your folder with all its content. The only way to reduce its size is to compress it.
– Yoric
1 hour ago
add a comment |
Oh. When I try to transfer the folder to drive, it's actually transferring the entire 26 MB. Is there anyway I can transfer only the actual file size i.e. 4KB?
– Prajwal
1 hour ago
@Prajwal 26 MB is the actual size of your folder with all its content. The only way to reduce its size is to compress it.
– Yoric
1 hour ago
Oh. When I try to transfer the folder to drive, it's actually transferring the entire 26 MB. Is there anyway I can transfer only the actual file size i.e. 4KB?
– Prajwal
1 hour ago
Oh. When I try to transfer the folder to drive, it's actually transferring the entire 26 MB. Is there anyway I can transfer only the actual file size i.e. 4KB?
– Prajwal
1 hour ago
@Prajwal 26 MB is the actual size of your folder with all its content. The only way to reduce its size is to compress it.
– Yoric
1 hour ago
@Prajwal 26 MB is the actual size of your folder with all its content. The only way to reduce its size is to compress it.
– Yoric
1 hour ago
add a comment |
Prajwal is a new contributor. Be nice, and check out our Code of Conduct.
Prajwal is a new contributor. Be nice, and check out our Code of Conduct.
Prajwal is a new contributor. Be nice, and check out our Code of Conduct.
Prajwal is a new contributor. Be nice, and check out our Code of Conduct.
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f346963%2ffinder-shows-different-file-size-compared-to-terminal%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
What did you alias
ls
to? The output you show is not standard for a simplels
.– nohillside♦
50 mins ago