Saving to Flash Drive: Copy Files & Drives?

  • Thread starter Thread starter WWGD
  • Start date Start date
  • Tags Tags
    Drive Flash
Click For Summary

Discussion Overview

The discussion revolves around the process of transferring files from a hard drive to a flash drive, including questions about file structure preservation, copying methods, and potential issues related to file systems. Participants explore both theoretical and practical aspects of file transfer, addressing concerns about capacity, file organization, and compatibility between different systems.

Discussion Character

  • Exploratory
  • Technical explanation
  • Conceptual clarification
  • Debate/contested
  • Homework-related

Main Points Raised

  • Some participants inquire whether files saved to a flash drive retain the same structure as on the original hard drive, expressing confusion about copying methods.
  • One participant suggests that if the flash drive has sufficient capacity, it is possible to transfer the root directory of the hard drive to the flash drive in one operation.
  • Another participant discusses the implications of sector sizes on storage efficiency and fragmentation, noting that files may not always be stored sequentially.
  • Concerns are raised about the potential for compatibility issues when transferring files between different file systems, such as NTFS and FAT32.
  • Some participants recommend using file backup utilities instead of direct copying to avoid issues with file structure and compatibility.
  • There is mention of the importance of ensuring that the flash drive is formatted correctly (e.g., NTFS) to facilitate successful file transfers.
  • One participant shares a cautionary note about a past scam involving external drives that contained smaller flash drives, highlighting the importance of verifying storage capacity.

Areas of Agreement / Disagreement

Participants express varying degrees of uncertainty regarding the best practices for file transfer, with no consensus on the optimal method or potential issues. Some agree on the importance of matching file systems, while others focus on the practical aspects of copying files.

Contextual Notes

Participants mention limitations related to file system compatibility and the potential for fragmentation affecting file storage. There are also references to the need for specific formatting of flash drives to ensure successful transfers.

Who May Find This Useful

This discussion may be useful for individuals looking to understand the nuances of transferring files between different storage devices, particularly those unfamiliar with file systems and backup methods.

WWGD
Science Advisor
Homework Helper
Messages
7,802
Reaction score
13,106
Hi all,
Hope this is not too simple/dumb:
When we save , say a Hard drive to a flash drive,
are the saved files saved in the drive with a schema similar to the one
that existed on the hard drive? Sorry I am being kind of lazy in not doing an experiment;
thought someone may save me time. Basically, a friend wants to transfer files from their hard drive
in one computer into another computer, using a Flash drive. Can one just copy a whole drive in a single
shot, or must one copy directories or even files individually? And, once the files are copied into
the Flash drive: can we copy them , all, a drive at a time? I am just confused, since I am used
to copying sets of files individually, and not full directories or even full drives in a single shot.
 
Computer science news on Phys.org
WWGD said:
Hi all,
Hope this is not too simple/dumb:
When we save , say a Hard drive to a flash drive,
are the saved files saved in the drive with a schema similar to the one
that existed on the hard drive? Sorry I am being kind of lazy in not doing an experiment;
thought someone may save me time. Basically, a friend wants to transfer files from their hard drive
in one computer into another computer, using a Flash drive. Can one just copy a whole drive in a single
shot, or must one copy directories or even files individually? And, once the files are copied into
the Flash drive: can we copy them , all, a drive at a time? I am just confused, since I am used
to copying sets of files individually, and not full directories or even full drives in a single shot.
If the thumb drive has sufficient capacity (which I seriously doubt it would unless you were copying a very small hard drive to a very large thumb drive) then yes, you can just transfer the root directory of the HD to the thumb drive and thence on to a second hard drive.

The windows file system is independent of specific hardware implementations so a different schema on a thumb drive is irrelevant to the macro level operation of transferring files.
 
  • Like
Likes   Reactions: WWGD
Flash drives can store files and directories. The difference is in the sector size as small drives have small sectors and large drives have large sectors. It has to do with keeping the sector numbering consistent between drives. Larger sector sizes mean there's more wasted space on large drives and that's by folks like to archive seldom used files to reduce the number of partially filled sectors. Basically each file will have a partially filled sector as the last block of the file. Hence less files means less partially filled sectors and better storage usage.

Files aren't always stored sequentially though as drives become fragmented during use i.e. deleting and adding files.
 
  • Like
Likes   Reactions: WWGD
There was a scam that went around a few years ago. Someone sold external drives to folks with high storage. Internally though, inside the drive enclosure was a thumb drive that could only hold a few gigabytes.

You might be able to find an external drive sufficient to hold all your files.
 
  • Like
Likes   Reactions: WWGD
jedishrfu said:
Flash drives can store files and directories. The difference is in the sector size as small drives have small sectors and large drives have large sectors. It has to do with keeping the sector numbering consistent between drives. Larger sector sizes mean there's more wasted space on large drives and that's by folks like to archive seldom used files to reduce the number of partially filled sectors. Basically each file will have a partially filled sector as the last block of the file. Hence less files means less partially filled sectors and better storage usage.

Files aren't always stored sequentially though as drives become fragmented during use i.e. deleting and adding files.
Don't most ( PC) systems periodically do defragging, so that files would not be spread about the hd too badly?

jedishrfu said:
Flash drives can store files and directories. The difference is in the sector size as small drives have small sectors and large drives have large sectors. It has to do with keeping the sector numbering consistent between drives. Larger sector sizes mean there's more wasted space on large drives and that's by folks like to archive seldom used files to reduce the number of partially filled sectors. Basically each file will have a partially filled sector as the last block of the file. Hence less files means less partially filled sectors and better storage usage.

Files aren't always stored sequentially though as drives become fragmented during use i.e. deleting and adding files.
Thanks; hpw about the replication side, passing from a flash drive into a host PC? Would the copying preserve in the host, the structure of the files in the Flash drive?
 
WWGD said:
Don't most ( PC) systems periodically do defragging, so that files would not be spread about the hd too badly?
Only if you tell it to (there is an option to tell it to do it periodically, yes, but some of us do not turn that on). For example, if your boot drive is a SSD, they defragging is a TERRIBLE idea.

Thanks; hpw about the replication side, passing from a flash drive into a host PC? Would the copying preserve in the host, the structure of the files in the Flash drive?
As I have already said, yes.
 
  • Like
Likes   Reactions: WWGD
Thanks both for your patience with my embarrassing "Where can I buy myself an Internet, of the latest model " -type gap in my knowledge.
 
Last edited:
One thing I would add is to ensure the filesystems (logical disk schema) match, otherwise you can run into some weird filesize and filename length issues when transferring between Linux/Unix and Windows NTFS filesystems to FAT32 commonly used on flash drives.
I recommend using a file backup utility instead of just copying folders over directly.
 
  • Like
Likes   Reactions: WWGD
stoomart said:
One thing I would add is to ensure the filesystems (logical disk schema) match, otherwise you can run into some weird filesize and filename length issues when transferring between Linux/Unix and Windows NTFS filesystems to FAT32 commonly used on flash drives.
I recommend using a file backup utility instead of just copying folders over directly.
Thanks; any suggestions to these effects? File backup sysytems and verifying the match ( I am copying between different Windows PCs)?
 
  • #10
WWGD said:
Thanks; any suggestions to these effects? File backup sysytems and verifying the match ( I am copying between different Windows formats)?
Windows 7+ has two excellent backup tools built-in, one for file backups and one for whole disk, both can be accessed in the Control Panel.
You just need to ensure the flash drive is formatted as NTFS, which you can determine by right-clicking it in the File Explorer > Properties. If it's FATx, save anything already on the drive you care about and reformat to NTFS.
 
  • Like
Likes   Reactions: WWGD
  • #11
WWGD said:
Hi all,
Hope this is not too simple/dumb:
When we save , say a Hard drive to a flash drive,
are the saved files saved in the drive with a schema similar to the one
that existed on the hard drive? Sorry I am being kind of lazy in not doing an experiment;
thought someone may save me time. Basically, a friend wants to transfer files from their hard drive
in one computer into another computer, using a Flash drive. Can one just copy a whole drive in a single
shot, or must one copy directories or even files individually? And, once the files are copied into
the Flash drive: can we copy them , all, a drive at a time? I am just confused, since I am used
to copying sets of files individually, and not full directories or even full drives in a single shot.
Basically no different than if saving from internal hard drive to another internal hard drive or to another place on the same internal hard drive. Drag-and-Drop, or Copy-and-Paste. Using usb flash drive is much the same as when "you used to" use floppy disks, except that usb flash drive have much much more storage capacity. Just be aware, that some usb flash drives might not allow certain files placed onto them to work/open. You should still find that another alternative, SAVING ONTO AN EXTERNAL HARD DRIVE DISK, could eliminate such a problem.

(I had trouble with some video files placed onto a usb flash drive of the Verbatim brand; they would not open or would not play; but when put onto external hard drive, they worked there without trouble.)
 
  • Like
Likes   Reactions: WWGD
  • #12
symbolipoint said:
Basically no different than if saving from internal hard drive to another internal hard drive or to another place on the same internal hard drive. Drag-and-Drop, or Copy-and-Paste. Using usb flash drive is much the same as when "you used to" use floppy disks, except that usb flash drive have much much more storage capacity. Just be aware, that some usb flash drives might not allow certain files placed onto them to work/open. You should still find that another alternative, SAVING ONTO AN EXTERNAL HARD DRIVE DISK, could eliminate such a problem.

(I had trouble with some video files placed onto a usb flash drive of the Verbatim brand; they would not open or would not play; but when put onto external hard drive, they worked there without trouble.)
Thanks, but the issue is on whether the structure of the files is preserved or not ( which has been answered) , and whether there is a " quantization" of sorts in terms of saveable units ( also answered).
 
  • #13
Some of my reading was brief or not too careful. About the 'quantization', that's something that others could say and have answered. About directory structure, YES. You can move a complete directory from computer's internal disk onto the external storage device and it should keep as you have on both now. Whatever the directory structure, it can be copied and pasted, or dragged and dropped.
 
  • Like
Likes   Reactions: WWGD

Similar threads

  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 18 ·
Replies
18
Views
2K
Replies
14
Views
2K
  • · Replies 14 ·
Replies
14
Views
4K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 15 ·
Replies
15
Views
2K
  • · Replies 23 ·
Replies
23
Views
4K
  • · Replies 15 ·
Replies
15
Views
3K
  • · Replies 17 ·
Replies
17
Views
3K
Replies
16
Views
3K