{"version":"1.0","provider_name":"Data Recovery Software","provider_url":"https:\/\/datarecovery.ping.fm\/zh-tw\/","author_name":"Data Recovery Software","author_url":"https:\/\/datarecovery.ping.fm\/zh-tw\/","title":"\u4ee5\u4e0b\u662f\u4e00\u7a2e\u5728 Mac \u4e0a\u5f9e\u5783\u573e\u6876\u4e2d\u6062\u5fa9\u5df2\u522a\u9664\u6a94\u6848\u7684\u65b9\u6cd5 [2024]","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"ZfZBrs7mxa\"><a href=\"https:\/\/datarecovery.ping.fm\/zh-tw\/recover-emptied-trash-mac\/\">\u4ee5\u4e0b\u662f\u5982\u4f55\u5728 Mac \u4e0a\u6062\u5fa9\u5df2\u5f9e\u5783\u573e\u6876\u6e05\u7a7a\u7684\u522a\u9664\u6587\u4ef6\u3002<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/datarecovery.ping.fm\/zh-tw\/recover-emptied-trash-mac\/embed\/#?secret=ZfZBrs7mxa\" width=\"600\" height=\"338\" title=\"&#8220;\u4ee5\u4e0b\u662f\u5982\u4f55\u5728 Mac \u4e0a\u6062\u5fa9\u5df2\u5f9e\u5783\u573e\u6876\u6e05\u7a7a\u7684\u522a\u9664\u6587\u4ef6\u3002&#8221; &#8212; Data Recovery Software\" data-secret=\"ZfZBrs7mxa\" 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-Recover-Deleted-Files-from-Emptied-Trash-on-Mac-1.jpg","thumbnail_width":1280,"thumbnail_height":731,"description":"\u5982\u4f55\u5f9e Mac \u6e05\u7a7a\u7684\u5783\u573e\u6876\u4e2d\u6062\u5fa9\u5df2\u522a\u9664\u7684\u6a94\u6848 \u958b\u59cb\u5c0b\u6c42\u5728 Mac \u4e0a\u6062\u5fa9\u5df2\u522a\u9664\u7684\u5783\u573e\u7684\u65b9\u6cd5\u53ef\u80fd\u4ee4\u4eba\u751f\u754f\uff0c\u4f46\u5225\u6015\uff0c\u6709\u65b9\u6cd5\u53ef\u4ee5\u53d6\u56de\u4f60\u4e1f\u5931\u7684\u5bf6\u8cb4\u6a94\u6848\u3002\u4e0d\u8ad6\u662f\u932f\u8aa4\u79fb\u9664\u7684\u6587\u4ef6\uff0c\u9084\u662f\u4f60\u4ee5\u70ba\u518d\u4e5f\u4e0d\u9700\u8981\u7684\u6a94\u6848\u6e05\u9664\uff0c\u6211\u5011\u90fd\u7d93\u6b77\u904e\u3002\u4f5c\u70ba\u4e00\u500b\u6df1\u5165 Mac \u6a94\u6848\u7cfb\u7d71\u5c0b\u627e\u5df2\u522a\u9664\u9805\u76ee\u7684\u4eba\uff0c\u8b93\u6211\u5f15\u5c0e\u4f60\u7a7f\u8d8a\u9019\u6bb5\u65c5\u7a0b\u3002\u5728\u9019\u7bc7\u6587\u7ae0\u4e2d\uff0c\u6211\u5c07\u5c55\u793a\u6211\u7528\u4f86\u6709\u6548\u5f9e Mac \u7684\u5783\u573e\u6876\u4e2d\u6062\u5fa9\u6a94\u6848\u7684\u5e7e\u7a2e\u6280\u5de7\u3002\u5982\u679c\u4f60\u5e0c\u671b\u9032\u4e00\u6b65\u638c\u63e1\u6062\u5fa9\u65b9\u6cd5\uff0c\u6587\u7ae0\u300a\u5982\u4f55\u4e0d\u8cbb\u5439\u7070\u4e4b\u529b\u6062\u5fa9\u4f60 Mac \u4e0a\u7684\u5df2\u6e05\u7a7a\u5783\u573e\u6876\u300b\u662f\u500b\u4e0d\u53ef\u591a\u5f97\u7684\u8cc7\u6e90\u3002 1 \u5e38\u898b\u60c5\u5883\uff1a \u610f\u5916\u522a\u9664 &#128465; \u5728\u6bcf\u5929\u7684\u5fd9\u788c\u5de5\u4f5c\u4e2d\uff0c\u5728\u4f60\u7684Mac\u4e0a\u9078\u53d6\u4e26\u522a\u9664\u932f\u8aa4\u7684\u6a94\u6848\u662f\u975e\u5e38\u5e38\u898b\u7684\u3002 \u53ef\u80fd\u5728\u6e05\u7a7a\u5783\u573e\u6876\u5f8c\u4f60\u624d\u610f\u8b58\u5230\u91cd\u8981\u7684\u6587\u4ef6\u593e\u653e\u5728\u4e86\u88ab\u4e1f\u68c4\u7684\u6a94\u6848\u4e2d\u3002 \u7576\u6050\u614c\u964d\u81e8\u6642\uff0c\u653e\u8f15\u9b06\uff0c\u56e0\u70ba\u6709\u6062\u5fa9\u9078\u9805\u53ef\u7528\uff0c\u53ef\u4ee5\u633d\u6551\u4f60\u7684\u4e00\u5929\u548c\u4f60\u7684\u8cc7\u6599\u3002 \u7cfb\u7d71\u6e05\u7406\u5f8c\u7684\u907a\u61be &#128560; \u5fb9\u5e95\u7684\u7cfb\u7d71\u6e05\u7406\u548c\u5783\u573e\u6e05\u7a7a\u5f8c\uff0c\u4f60\u53ef\u80fd\u6703\u767c\u73fe\u4e00\u500b\u91cd\u8981\u7684\u6587\u4ef6\u593e\u88ab\u932f\u8aa4\u5730\u5783\u573e\u8655\u7406\u4e26\u6c38\u4e45\u522a\u9664\u4e86\u3002 \u6f5b\u5728\u5931\u53bb\u73cd\u8cb4\u7167\u7247\u6216\u5de5\u4f5c\u6587\u4ef6\u7684\u6c88\u91cd\u611f\u89ba\u662f\u6211\u975e\u5e38\u4e86\u89e3\u7684\u3002 \u7136\u800c\uff0c\u6211\u5f9e\u90a3\u4ee5\u5f8c\u5b78\u6703\u4e86\u5e7e\u7a2e\u65b9\u6cd5\uff0c\u53ef\u4ee5\u5728\u4f60\u7684Mac \u6a94\u6848\u7cfb\u7d71\u4e2d\u767c\u6398\u90a3\u4e9b\u88ab\u8a8d\u70ba\u6c38\u9060\u6d88\u5931\u7684\u6a94\u6848\u3002 \u975e\u6545\u610f\u7684\u6279\u91cf\u522a\u9664 &#128562; \u51fa\u65bc\u63d0\u9ad8\u6548\u7387\u800c\u9032\u884c\u7684\u6279\u91cf\u522a\u9664\u6a94\u6848\uff0c\u5982\u679c\u4f60\u6c92\u6709\u4ed4\u7d30\u6aa2\u67e5\u6240\u9078\u9805\u76ee\u53ef\u80fd\u6703\u5f04\u5de7\u6210\u62d9\u3002 \u9019\u7a2e\u7c97\u653e\u5f0f\u7684\u6574\u7406\u6709\u6642\u53ef\u80fd\u5c0e\u81f4\u91cd\u8981\u6a94\u6848\u6216\u6587\u4ef6\u593e\u7684\u7121\u610f\u9593\u79fb\u9664\u3002 \u5e78\u904b\u7684\u662f\uff0c\u6211\u767c\u73fe\u5feb\u901f\u884c\u52d5\u548c\u6b63\u78ba\u7684\u6062\u5fa9\u5de5\u5177\u5373\u4f7f\u5728\u5b83\u5011\u5f9e\u5783\u573e\u6876\u6d88\u5931\u5f8c\u4e5f\u80fd\u6062\u5fa9\u5927\u91cf\u522a\u9664\u7684\u9805\u76ee\u3002 2 \u5206\u6b65\u6307\u5357\u3002\u5982\u4f55\u5728 Mac \u4e0a\u6062\u5fa9\u5df2\u6e05\u7a7a\u7684\u5783\u573e\u6876\uff1a \u65b9\u6cd5 1\uff1aTime Machine \u5099\u4efd &#128338; \u9996\u5148\uff0c\u9023\u63a5\u5305\u542b\u4f60\u7684 Time Machine \u5099\u4efd\u7684\u5916\u90e8\u9a45\u52d5\u5668\u3002 \u5728\u7cfb\u7d71\u504f\u597d\u8a2d\u5b9a\u4e2d\u6253\u958b\u300cTime Machine\u300d\u6216\u901a\u904e\u83dc\u55ae\u6b04\u9032\u5165\uff0c\u7136\u5f8c\u5c0e\u822a\u5230\u6a94\u6848\u88ab\u522a\u9664\u524d\u7684\u65e5\u671f\u3002 \u700f\u89bd\u4f60\u7684\u5099\u4efd\uff0c\u627e\u5230\u5783\u573e\u6876\u6216\u4f60\u7684\u6587\u4ef6\u539f\u4f86\u6240\u5728\u7684\u6587\u4ef6\u593e\u3002\u9078\u64c7\u6a94\u6848\uff0c\u7136\u5f8c\u9ede\u64ca\u300c\u6062\u5fa9\u300d\u4f86\u6062\u5fa9\u5b83\u5011\u3002 \u6ce8\u610f\uff1a\u9019\u500b\u65b9\u6cd5\u53d6\u6c7a\u65bc\u5728\u522a\u9664\u524d\u5df2\u7d93\u6709\u4e86 Time Machine \u5099\u4efd\u3002 \u7d50\u8ad6\uff1aTime Machine \u662f\u64a4\u92b7\u6a94\u6848\u522a\u9664\u7684\u6551\u547d\u6069\u4eba\uff0c\u4f46\u5b83\u9700\u8981\u5b9a\u671f\u5099\u4efd\u7684\u9060\u898b\u3002 \u65b9\u6cd5 2\uff1a\u64a4\u92b7\u9078\u9805 [&hellip;]"}