硬盘变为RAW可能会有以下的提示,比如当用户试图打开移动硬盘访问其中的文件,提示“无法访问,此卷不包含可识别的文件系统”。我们可以通过下面介绍的几种方法来进行修复,在修复完成后,您将可以继续正常读取硬盘中的文件。
方法1、通过磁盘错误检查来修复步骤1:打开“我的电脑/此电脑”,右键点击RAW驱动器并选择【属性】。在属性窗口中切换至【工具】选项,并单击【检查】按钮。
步骤2:接下来,在错误检查界面里选择【扫描驱动器】选项,之后等待扫描并根据提示修复即可。
方法2、通过重新格式化来修复格式化 *** 作可以为移动硬盘重新设置Windows可识别的文件系统,步骤如下:
步骤1:右键开始菜单,点击【磁盘管理】。
步骤2:右键点击文件系统为RAW的移动硬盘,选择【格式化】。
步骤3:选择文件系统,勾选【执行快速格式化】,点击【确定】。若移动硬盘是在Windows系统上使用的,建议选择NTFS文件系统,还可查看:FAT32、NTFS、exFAT的特点与区别。
步骤4:格式化 *** 作会提示您将清除移动硬盘里的所有数据,点击【确定】,然后等待格式化完成即可。待格式化 *** 作完成之后,即可解决移动硬盘变为RAW的问题。
方法3、通过diskpart命令来修复
步骤1: 在任务栏左侧的搜索栏中输入【cmd】搜索命令提示符。
步骤2:右键点击搜索结果中的【命令提示符】,然后选择【以管理员身份运行】。
步骤3:输入【diskpart】命令,按【Enter】键运行。然后输入【list disk】,查看当前电脑所连接的磁盘。注意:每输入一条命令之后都需要按下【Enter】键。
步骤4:接着输入【select disk 1】,选择要格式化的磁盘(此处移动硬盘为磁盘1),可根据容量大小来判断。
步骤5:输入【clean】命令,显示diskpart成功地清除了磁盘,这指的是清除磁盘中的全部数据,包括分区、卷等。
步骤6: 输入【creat partition primary】创建主分区,并输入【active】将分区标记为活动分区。
步骤7:最后输入命令【format fs=ntfs quick】对移动硬盘进行格式化,fs=ntfs指的是将移动硬盘格式化为NTFS文件系统,也可以用FAT32、exFAT代替NTFS。
扩展资料:
RAW有未经处理的意思,所以RAW也指未格式化的磁盘,一些U盘中毒之后或一些误 *** 作,也可能是系统出些故障,都会使其文件系统变为RAW,硬盘有时由于系统的原因也可能变成这种情况。
硬盘变为RAW以后,虽然不能在文件资源管理器中正常打开它,但我们可以在磁盘管理中看到该硬盘已连接到计算机,这种情况下就可以使用都叫兽™数据恢复软件对其进行扫描和恢复,避免在修复过程中出现数据丢失的问题。
参考资料:
RAW格式 - 百度百科
https://www.reneelab.com.cn/external-hard-drive-raw-fix.html
% 网上找的,看下有没有用function [X,map] = rawread(filename,n,m)
% RAWREAD Read a Portable Bitmap file, or a raw file.
% RAWREAD('imagefile.raw', xsize, ysize) reads a "raw" image file
% RAWREAD('imagefile.pgm') reads a "pgm" (portable gray map) image
% [X,map] = RAWREAD('imagefile.raw') returns both the image and a
% color map, so that
% [X,map] = rawread('imagefile.raw',sx,sy)
% or [X,map] = rawread('imagefile.pgm')
% image(X)
% colormap(map)
% will display the result with the proper colors.
%
% NOTE : map is optional and could be replaced during the display by
% the "colormap('gray')" command
%
% See also IMWRITE, IMREAD, IMAGE, COLORMAP.
dot = max(find(filename == '.'))
suffix = filename(dot+1:dot+3)
if strcmp(suffix,'pgm') | strcmp(suffix,'raw')
disp(sprintf('nopens %s filen',filename))
fp = fopen(filename,'rb','b')% "Big-endian" byte order.
if (fp<0)
error(['Cannot open ' filename '.'])
end
if strcmp(suffix,'pgm')
% Read and crack the header
head = fread(fp,2,'uchar')% pgm magic number : P5
if ~strcmp(head,'P5'),
fprintf(1,'n Magic Number : %sn',head)
else
fprintf(1,'n Bad Magic Number : %sn',head)
error('cannot continue this way, good bye cruel world')
end
c = fread(fp,1,'uchar')%reads the carriage return separating P5 from the creator
precreator = fread(fp,1,'uchar')% look for a '#' character preceeding a creator signature
if precreator == '#',
c = setstr(20)% any character except carriage return
cr = setstr(10)% defines a carriage return
while c ~= cr,
c = fread(fp,1,'uchar')
creator = [creator,c]
end
fprintf(1,'n creator : %sn',creator)
else
fprintf('n No creator signaturen')
fseek(fp,-1,'cof')% return one char before
end
end
if nargin <2,
if strcmp(suffix,'raw')
% assume image size is 256x256
disp('RAW file without size : assume image size is 256x256')
n = 256
m = 256
else % for PGM files
% reads the size and depth
disp(' reads sizes')
n = fscanf(fp,'%d',1)
tn = num2str(n)
disp([' xsize = ' tn])
m = fscanf(fp,'%d',1)
tm = num2str(m)
disp([' ysize = ' tm])
p = fscanf(fp,'%d',1)
tp = num2str(p)
disp([' depth = ' tp])
c = fread(fp,1,'uchar')%reads the last carriage return
end
end
% Creates a gray palette and scale it to [0,1].
disp(' create gray palette')
for i=1:256,
map(i,[1:3])=[i/256,i/256,i/256]
end
% Read the image
disp(' Reads image data ...')
[X,l] = fread(fp,[n,m],'uchar')
if l ~= m*n, l, error('HSI image file is wrong length'), end
% Image elements are colormap indices, so start at 1.
X = X'+1
fclose(fp)
disp('end')
else
error('Image file name must end in ''raw'' or ''pgm''.')
end
用ACR插件可以读取尼康d850的raw文件,具体的 *** 作方法和步骤如下:
准备材料:ACR插件,电脑。
1、首先,准备好从camera raw官网下载的对应版本的ACR插件并打开,如下图所示。
2、接着,打开后,依次单击软件的“帮助”-->“关于增效工具”-->“Camera Raw”,如下图所示。
3、然后,完成上述步骤后,检查版本以确认已安装插件,如下图所示。
4、随后,完成上述步骤后,找到RAW文件,并将其拖到软件中进行处理,如下图所示。
6、最后,完成上述步骤后,就可以查看RAW文件了,ps会自动使用Camera Raw处理原始格式文件,如下图所示。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)