{"version":"1.0","provider_name":"\u6570\u636e\u6062\u590d\u8f6f\u4ef6","provider_url":"https:\/\/datarecovery.ping.fm\/zh\/","author_name":"zamozhnii","author_url":"https:\/\/datarecovery.ping.fm\/zh\/","title":"\u5982\u4f55\u5728 Mac \u4e0a\u6c38\u4e45\u6062\u590d\u5df2\u5220\u9664\u7684\u7167\u7247\uff1a5\u79cd\u89e3\u51b3\u65b9\u6848","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"9UrZ3BIiwg\"><a href=\"https:\/\/datarecovery.ping.fm\/zh\/mac-photo-recovery\/\">\u5982\u4f55\u8f7b\u677e\u5730\u5728Mac\u8bbe\u5907\u4e0a\u6062\u590d\u6c38\u4e45\u5220\u9664\u7684\u7167\u7247<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/datarecovery.ping.fm\/zh\/mac-photo-recovery\/embed\/#?secret=9UrZ3BIiwg\" width=\"600\" height=\"338\" title=\"&#8220;\u5982\u4f55\u8f7b\u677e\u5730\u5728Mac\u8bbe\u5907\u4e0a\u6062\u590d\u6c38\u4e45\u5220\u9664\u7684\u7167\u7247&#8221; &#8212; \u6570\u636e\u6062\u590d\u8f6f\u4ef6\" data-secret=\"9UrZ3BIiwg\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * This file cannot have ampersands in it. This is to ensure\n * it can be embedded in older versions of WordPress.\n * See https:\/\/core.trac.wordpress.org\/changeset\/35708.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\tvar supportedBrowser = false,\n\t\tloaded = false;\n\n\t\tif ( document.querySelector ) {\n\t\t\tif ( window.addEventListener ) {\n\t\t\t\tsupportedBrowser = true;\n\t\t\t}\n\t\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\tif ( ! data ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( ! ( data.secret || data.message || data.value ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( \/[^a-zA-Z0-9]\/.test( data.secret ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\t\/* Resize the iframe on request. *\/\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t}\n\n\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\tif ( 'link' === data.message ) {\n\t\t\t\tsourceURL = document.createElement( 'a' );\n\t\t\t\ttargetURL = document.createElement( 'a' );\n\n\t\t\t\tsourceURL.href = source.getAttribute( 'src' );\n\t\t\t\ttargetURL.href = data.value;\n\n\t\t\t\t\/* Only follow link if the protocol is in the allow list. *\/\n\t\t\t\tif ( ! allowedProtocols.test( targetURL.protocol ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t\/* Only continue if link hostname matches iframe's hostname. *\/\n\t\t\t\tif ( targetURL.host === sourceURL.host ) {\n\t\t\t\t\tif ( document.activeElement === source ) {\n\t\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tif ( loaded ) {\n\t\t\treturn;\n\t\t}\n\n\t\tloaded = true;\n\n\t\tvar isIE10 = -1 !== navigator.appVersion.indexOf( 'MSIE 10' ),\n\t\t\tisIE11 = !!navigator.userAgent.match( \/Trident.*rv:11\\.\/ ),\n\t\t\tiframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\tiframeClone, i, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substr( 2, 10 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/* Remove security attribute from iframes in IE10 and IE11. *\/\n\t\t\tif ( ( isIE10 || isIE11 ) ) {\n\t\t\t\tiframeClone = source.cloneNode( true );\n\t\t\t\tiframeClone.removeAttribute( 'security' );\n\t\t\t\tsource.parentNode.replaceChild( iframeClone, source );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\tif ( supportedBrowser ) {\n\t\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\t\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n\t\twindow.addEventListener( 'load', onLoad, false );\n\t}\n})( window, document );\n<\/script>\n","thumbnail_url":"https:\/\/datarecovery.ping.fm\/wp-content\/uploads\/2024\/03\/How-to-Easily-Recover-Permanently-Deleted-Photos-on-Mac-Chinese.jpg","thumbnail_width":1280,"thumbnail_height":731,"description":"\u5982\u4f55\u8f7b\u677e\u6062\u590dMac\u4e0a\u6c38\u4e45\u5220\u9664\u7684\u7167\u7247 &#13; &#13; \u4e22\u5931\u73cd\u8d35\u7684\u7167\u7247\u53ef\u80fd\u4ee4\u4eba\u75db\u82e6\uff0c\u4f46\u5e78\u8fd0\u7684\u662f\uff0c\u4f5c\u4e3aMac\u7528\u6237\uff0c\u60a8\u53ef\u4ee5\u91c7\u7528\u51e0\u79cd\u65b9\u6cd5\u6765\u6062\u590d\u5220\u9664\u7684\u7167\u7247\u3002\u6839\u636e\u6211\u7684\u7ecf\u9a8c\uff0c\u5feb\u901f\u800c\u6709\u6761\u4e0d\u7d0a\u7684\u884c\u52a8\u81f3\u5173\u91cd\u8981\uff0c\u4ee5\u6700\u5927\u7a0b\u5ea6\u5730\u63d0\u9ad8\u6062\u590d\u7684\u673a\u4f1a\u3002\u65e0\u8bba\u60a8\u662f\u56e0\u610f\u5916\u5220\u9664\u3001\u7cfb\u7edf\u6545\u969c\u8fd8\u662f\u5916\u90e8\u9a71\u52a8\u5668\u95ee\u9898\u800c\u4e22\u5931\u4e86\u7167\u7247\uff0c\u90fd\u6709\u591a\u79cd\u65b9\u6cd5\u5c1d\u8bd5\u5728Mac\u4e0a\u8fdb\u884c\u7167\u7247\u6062\u590d\u3002\u5728\u4e0b\u6587\u4e2d\uff0c\u6211\u5c06\u6307\u5bfc\u60a8\u9075\u5faa\u6211\u7528\u6765\u6210\u529f\u6062\u590d\u4e22\u5931\u7684\u56fe\u50cf\u7684\u8fc7\u7a0b\uff0c\u5305\u62ec\u9884\u9632\u672a\u6765\u4e22\u5931\u7684\u63d0\u793a\u3002\u5bf9\u4e8e\u90a3\u4e9b\u5e0c\u671b\u627e\u56deCR2\u3001NEF\u6216CRW\u7b49\u4e0d\u540c\u6587\u4ef6\u7c7b\u578b\u7684\u7528\u6237\uff0c\u8fd9\u4e2a\u8d44\u6e90\u53ef\u4ee5\u5e2e\u52a9\u60a8\u4e86\u89e3\u5982\u4f55\u6062\u590d\u5220\u9664\u7684\u7167\u7247\u3002 &#13; 1 \u5e38\u89c1\u573a\u666f\uff1a \u610f\u5916\u5220\u9664 &#128465; \u5728\u5f7b\u5e95\u6e05\u7406\u6211\u7684Mac\u4e4b\u540e\uff0c\u6211\u53d1\u73b0\u81ea\u5df1\u4e0d\u5c0f\u5fc3\u5220\u9664\u4e86\u4e00\u4e2a\u8fd8\u6ca1\u6709\u5907\u4efd\u7684\u88c5\u6ee1\u5047\u671f\u7167\u7247\u7684\u6587\u4ef6\u5939\u3002 \u6211\u8bb0\u5f97\u5f53\u65f6\u611f\u5230\u614c\u5f20\uff0c\u5e76\u7acb\u5373\u505c\u6b62\u4f7f\u7528\u6211\u7684\u7535\u8111\uff0c\u4ee5\u9632\u6b62\u8986\u76d6\u7167\u7247\u50a8\u5b58\u7684\u7a7a\u95f4\u3002 \u7cfb\u7edf\u5d29\u6e83 &#128295; \u5728\u4e00\u6b21\u66f4\u65b0\u4e2d\uff0c\u6211\u7684Mac\u51fa\u73b0\u4e86\u8f6f\u4ef6\u6545\u969c\u3002\u91cd\u542f\u540e\uff0c\u6211\u53d1\u73b0\u4e00\u4e9b\u6700\u8fd1\u5bfc\u5165\u7684\u7167\u7247\u4e0d\u89c1\u4e86\u3002 \u6211\u7acb\u523b\u4f7f\u7528\u78c1\u76d8\u5de5\u5177\u4fee\u590d\u6743\u9650\uff0c\u6000\u7591\u53ef\u80fd\u662f\u6587\u4ef6\u7cfb\u7edf\u9519\u8bef\u5bfc\u81f4\u7167\u7247\u88ab\u6807\u8bb0\u4e3a\u5220\u9664\u3002 \u5916\u90e8\u9a71\u52a8\u5668\u95ee\u9898 &#128189; \u6211\u5728\u6ca1\u6709\u9002\u5f53\u5f39\u51fa\u5916\u90e8\u786c\u76d8\u7684\u60c5\u51b5\u4e0b\u65ad\u5f00\u8fde\u63a5\uff0c\u5bfc\u81f4\u9a71\u52a8\u5668\u635f\u574f\u3002\u4e00\u4e9b\u6587\u4ef6\u5939\u53d8\u5f97\u65e0\u6cd5\u8bbf\u95ee\uff0c\u800c\u5185\u90e8\u7684\u7167\u7247\u6d88\u5931\u4e86\u3002 \u6211\u4f7f\u7528\u5185\u7f6e\u8f6f\u4ef6\u548c\u7b2c\u4e09\u65b9\u5de5\u5177\u8bd5\u56fe\u4ece\u51fa\u73b0\u6545\u969c\u7684\u9a71\u52a8\u5668\u4e2d\u68c0\u7d22\u4e22\u5931\u7684\u6570\u636e\u3002 &#13; 2 \u5206\u6b65\u6307\u5357\u3002Mac\u7167\u7247\u6062\u590d\uff1a \u65b9\u6cd51\uff1a\u4ece\u5783\u573e\u6876\u6062\u590d &#128465; \u9996\u5148\uff0c\u6211\u68c0\u67e5\u4e86Mac\u7684\u5783\u573e\u6876\u3002\u5df2\u5220\u9664\u7684\u6587\u4ef6\u901a\u5e38\u4f1a\u505c\u7559\u5728\u8fd9\u91cc\uff0c\u76f4\u5230\u5783\u573e\u6876\u88ab\u6e05\u7a7a\u3002 \u6211\u627e\u5230\u4e86\u5220\u9664\u7684\u7167\u7247\uff0c\u53f3\u952e\u70b9\u51fb\u5b83\u4eec\u5e76\u9009\u62e9\u201c\u653e\u56de\u201d\u4ee5\u5c06\u5b83\u4eec\u6062\u590d\u5230\u539f\u6765\u7684\u4f4d\u7f6e\u3002 \u5982\u679c\u5783\u573e\u6876\u5df2\u88ab\u6e05\u7a7a\uff0c\u6211\u4ecd\u7136\u53ef\u4ee5\u5c1d\u8bd5\u4f7f\u7528\u4e13\u95e8\u7684\u8f6f\u4ef6\u6765\u6062\u590d\u6587\u4ef6\uff0c\u8fd9\u5c06\u5728\u672c\u6307\u5357\u540e\u9762\u8ba8\u8bba\u3002 \u6ce8\u610f\uff1a\u4e00\u65e6\u5783\u573e\u6876\u88ab\u6e05\u7a7a\uff0c\u6587\u4ef6\u5e76\u6ca1\u6709\u771f\u6b63\u4ece\u9a71\u52a8\u5668\u4e2d\u88ab\u62b9\u53bb\u2014\u2014\u5b83\u4eec\u53ea\u662f\u88ab\u6807\u8bb0\u4e3a\u53ef\u4f7f\u7528\u7684\u7a7a\u95f4\uff0c\u6240\u4ee5\u907f\u514d\u4f7f\u7528\u60a8\u7684Mac\u6765\u9632\u6b62\u8986\u76d6\u6570\u636e\u3002 \u7ed3\u8bba\uff1a\u5f53\u5c1d\u8bd5\u5728Mac\u4e0a\u6062\u590d\u5220\u9664\u7684\u7167\u7247\u65f6\uff0c\u5783\u573e\u6876\u901a\u5e38\u662f\u5f00\u59cb\u7684\u6700\u7b80\u5355\u5730\u65b9\u3002 \u65b9\u6cd52\uff1aTime Machine\u5907\u4efd &#9200; \u5982\u679c\u6211\u7684Mac\u542f\u7528\u4e86Time Machine\u5907\u4efd\uff0c\u6062\u590d\u4e22\u5931\u7684\u7167\u7247\u5c31\u76f8\u5f53\u76f4\u63a5\u4e86\u5f53\u3002 \u4e3a\u4e86\u6062\u590d\u7167\u7247\uff0c\u6211\u5728Finder\u7a97\u53e3\u6216\u4ee5\u524d\u5b58\u653e\u7167\u7247\u7684\u6587\u4ef6\u5939\u4e2d\u6253\u5f00Time Machine\u3002 \u6211\u6d4f\u89c8\u8fc7\u65f6\u95f4\u6233\u5907\u4efd\u627e\u5230\u6211\u6b63\u5728\u5bfb\u627e\u7684\u56fe\u7247\uff0c\u9009\u62e9\u5b83\u4eec\uff0c\u7136\u540e\u70b9\u51fb\u201c\u6062\u590d\u201d\u3002 \u6ce8\u610f\uff1a\u6b64\u65b9\u6cd5\u4ec5\u5728\u5220\u9664\u7167\u7247\u4e4b\u524d\u8bbe\u7f6e\u4e86Time Machine\u65f6\u6709\u6548\u3002 \u7ed3\u8bba\uff1a\u5982\u679c\u60a8\u5df2\u7ecf\u91c7\u53d6\u4e86\u5b9a\u671f\u5907\u4efd\u7cfb\u7edf\u7684\u9884\u9632\u63aa\u65bd\uff0cTime Machine\u662f\u68c0\u7d22\u4e22\u5931\u6587\u4ef6\u7684\u6709\u529b\u5de5\u5177\u3002 \u65b9\u6cd53\uff1a\u4f7f\u7528\u6062\u590d\u7a0b\u5e8f &#128189; \u5728\u5783\u573e\u6876\u88ab\u6e05\u7a7a\u540e\u8981\u6062\u590d\u7167\u7247\uff0c\u6211\u6210\u529f\u4f7f\u7528\u4e86\u7b2c\u4e09\u65b9\u6062\u590d\u8f6f\u4ef6\u50cfDisk Drill\u3002 \u4e0b\u8f7d\u5e76\u5b89\u88c5Disk Drill\u540e\uff0c\u6211\u542f\u52a8\u4e86\u5e94\u7528\u7a0b\u5e8f\u5e76\u9009\u62e9\u6211\u7684Mac\u786c\u76d8\u6765\u626b\u63cf\u5df2\u5220\u9664\u7684\u6587\u4ef6\u3002 \u6211\u9884\u89c8\u4e86\u53ef\u6062\u590d\u7684\u7167\u7247\uff0c\u5e76\u9009\u62e9\u4e86\u6211\u60f3\u8981\u68c0\u7d22\u7684\u7167\u7247\uff0c\u70b9\u51fb\u4e86\u201c\u6062\u590d\u201d\u6309\u94ae\uff0c\u5e76\u9009\u62e9\u4e86\u4e00\u4e2a\u65b0\u7684\u4fdd\u5b58\u4f4d\u7f6e\u3002 \u6ce8\u610f\uff1a\u8bb8\u591a\u6062\u590d\u7a0b\u5e8f\u63d0\u4f9b\u4e86\u4e00\u4e2a\u514d\u8d39\u8bd5\u7528\u6765\u9884\u89c8\u6587\u4ef6\uff0c\u4f46\u53ef\u80fd\u9700\u8981\u8d2d\u4e70\u6765\u5b8c\u5168\u6062\u590d\u3002 \u7ed3\u8bba\uff1a\u6062\u590d\u7a0b\u5e8f\u53ef\u4ee5\u975e\u5e38\u6709\u6548\uff0c\u5c3d\u7ba1\u6709\u65f6\u9700\u8981\u652f\u4ed8\u4e00\u4e9b\u8d39\u7528\u3002 \u65b9\u6cd54\uff1a\u4f7f\u7528Terminal &#128187; \u5982\u679c\u64cd\u4f5c\u5f97\u5f53\uff0c\u5e76\u5728\u5220\u9664\u540e\u8fc5\u901f\u4f7f\u7528\uff0c\u53ef\u4ee5\u4f7f\u7528Terminal\u547d\u4ee4\u6765\u6062\u590d\u7167\u7247\u3002\u6211\u4f7f\u7528\u547d\u4ee4\u201ccd .Trash\u201d\u6765\u5bfc\u822a\u5230\u5783\u573e\u7bb1\u76ee\u5f55\u3002 \u7136\u540e\uff0c\u6211\u4f7f\u7528\u201cls\u201d\u5217\u51fa\u6240\u6709\u6587\u4ef6\uff0c\u627e\u5230\u6211\u7684\u56fe\u7247\uff0c\u5e76\u4f7f\u7528\u201cmv\u201d\u547d\u4ee4\u5c06\u5b83\u4eec\u79fb\u5230\u6211\u7684\u684c\u9762\u6216\u9996\u9009\u4f4d\u7f6e\u3002 [&hellip;]"}