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
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
1
What did you aliasls
to? The output you show is not standard for a simplels
.
– nohillside♦
Dec 29 '18 at 12:16
@nohillside I have aliased ls to 'ls -lh'
– Prajwal
Dec 29 '18 at 13:14
The image shows a file size of 25.7 MB but in the text you write 26.3 MB. Where did the last figure come from?
– 11684
Dec 29 '18 at 21:33
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
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
asked Dec 29 '18 at 11:13
Prajwal
132
132
1
What did you aliasls
to? The output you show is not standard for a simplels
.
– nohillside♦
Dec 29 '18 at 12:16
@nohillside I have aliased ls to 'ls -lh'
– Prajwal
Dec 29 '18 at 13:14
The image shows a file size of 25.7 MB but in the text you write 26.3 MB. Where did the last figure come from?
– 11684
Dec 29 '18 at 21:33
add a comment |
1
What did you aliasls
to? The output you show is not standard for a simplels
.
– nohillside♦
Dec 29 '18 at 12:16
@nohillside I have aliased ls to 'ls -lh'
– Prajwal
Dec 29 '18 at 13:14
The image shows a file size of 25.7 MB but in the text you write 26.3 MB. Where did the last figure come from?
– 11684
Dec 29 '18 at 21:33
1
1
What did you alias
ls
to? The output you show is not standard for a simple ls
.– nohillside♦
Dec 29 '18 at 12:16
What did you alias
ls
to? The output you show is not standard for a simple ls
.– nohillside♦
Dec 29 '18 at 12:16
@nohillside I have aliased ls to 'ls -lh'
– Prajwal
Dec 29 '18 at 13:14
@nohillside I have aliased ls to 'ls -lh'
– Prajwal
Dec 29 '18 at 13:14
The image shows a file size of 25.7 MB but in the text you write 26.3 MB. Where did the last figure come from?
– 11684
Dec 29 '18 at 21:33
The image shows a file size of 25.7 MB but in the text you write 26.3 MB. Where did the last figure come from?
– 11684
Dec 29 '18 at 21:33
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.
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
Dec 29 '18 at 11:45
2
@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
Dec 29 '18 at 11:51
1
@Prajwal you can remove the contents of the folder and only transfer that. Then Finder and ls wound agree on the size.
– Tim
Dec 29 '18 at 13:32
@Tim And nuke the git metadata at the same time?
– D. Ben Knoble
Dec 29 '18 at 14:17
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%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.
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
Dec 29 '18 at 11:45
2
@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
Dec 29 '18 at 11:51
1
@Prajwal you can remove the contents of the folder and only transfer that. Then Finder and ls wound agree on the size.
– Tim
Dec 29 '18 at 13:32
@Tim And nuke the git metadata at the same time?
– D. Ben Knoble
Dec 29 '18 at 14:17
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.
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
Dec 29 '18 at 11:45
2
@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
Dec 29 '18 at 11:51
1
@Prajwal you can remove the contents of the folder and only transfer that. Then Finder and ls wound agree on the size.
– Tim
Dec 29 '18 at 13:32
@Tim And nuke the git metadata at the same time?
– D. Ben Knoble
Dec 29 '18 at 14:17
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.
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.
edited Dec 29 '18 at 12:18
nohillside♦
51k13109149
51k13109149
answered Dec 29 '18 at 11:27
Yoric
2685
2685
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
Dec 29 '18 at 11:45
2
@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
Dec 29 '18 at 11:51
1
@Prajwal you can remove the contents of the folder and only transfer that. Then Finder and ls wound agree on the size.
– Tim
Dec 29 '18 at 13:32
@Tim And nuke the git metadata at the same time?
– D. Ben Knoble
Dec 29 '18 at 14:17
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
Dec 29 '18 at 11:45
2
@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
Dec 29 '18 at 11:51
1
@Prajwal you can remove the contents of the folder and only transfer that. Then Finder and ls wound agree on the size.
– Tim
Dec 29 '18 at 13:32
@Tim And nuke the git metadata at the same time?
– D. Ben Knoble
Dec 29 '18 at 14:17
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
Dec 29 '18 at 11:45
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
Dec 29 '18 at 11:45
2
2
@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
Dec 29 '18 at 11:51
@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
Dec 29 '18 at 11:51
1
1
@Prajwal you can remove the contents of the folder and only transfer that. Then Finder and ls wound agree on the size.
– Tim
Dec 29 '18 at 13:32
@Prajwal you can remove the contents of the folder and only transfer that. Then Finder and ls wound agree on the size.
– Tim
Dec 29 '18 at 13:32
@Tim And nuke the git metadata at the same time?
– D. Ben Knoble
Dec 29 '18 at 14:17
@Tim And nuke the git metadata at the same time?
– D. Ben Knoble
Dec 29 '18 at 14:17
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.
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
1
What did you alias
ls
to? The output you show is not standard for a simplels
.– nohillside♦
Dec 29 '18 at 12:16
@nohillside I have aliased ls to 'ls -lh'
– Prajwal
Dec 29 '18 at 13:14
The image shows a file size of 25.7 MB but in the text you write 26.3 MB. Where did the last figure come from?
– 11684
Dec 29 '18 at 21:33