StorageFolder.TryGetItemAsync(String) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Tenta di ottenere il file o la cartella con il nome specificato dalla cartella corrente. Restituisce null anziché generare un'eccezione FileNotFoundException se il file o la cartella specificata non viene trovato.
public:
virtual IAsyncOperation<IStorageItem ^> ^ TryGetItemAsync(Platform::String ^ name) = TryGetItemAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IStorageItem> TryGetItemAsync(winrt::hstring const& name);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IStorageItem> TryGetItemAsync(string name);
function tryGetItemAsync(name)
Public Function TryGetItemAsync (name As String) As IAsyncOperation(Of IStorageItem)
Parametri
- name
-
String
Platform::String
winrt::hstring
Nome (o percorso relativo alla cartella corrente) del file o della cartella da ottenere.
Restituisce
Al termine di questo metodo, restituisce un oggetto IStorageItem che rappresenta il file o la cartella specificati. Se il file o la cartella specificata non viene trovato, questo metodo restituisce null anziché generare un'eccezione.
Per utilizzare l'elemento restituito, chiamare il metodo IsOfType dell'interfaccia IStorageItem per determinare se l'elemento è un file o una cartella. Eseguire quindi il cast dell'elemento in storageFolder o StorageFile.
Implementazioni
- Attributi
Esempio
Nell'esempio seguente viene illustrato come provare a ottenere un singolo file o cartella dalla cartella corrente oppure per verificare se il file o la cartella esiste chiamando il metodo TryGetItemAsync.
using Windows.Storage;
using System.Threading.Tasks;
using System.Diagnostics; // For writing results to Output window.
// Get the path to the app's Assets folder.
string root = Windows.ApplicationModel.Package.Current.InstalledLocation.Path;
string path = root + @"\Assets";
// Get the app's Assets folder.
StorageFolder assetsFolder = await StorageFolder.GetFolderFromPathAsync(path);
// Check whether an image with the specified scale exists.
string imageName = "Logo.scale-140.png";
if (await assetsFolder.TryGetItemAsync(imageName) != null)
Debug.WriteLine(imageName + " exists.");
else // Return value of TryGetItemAsync is null.
Debug.WriteLine(imageName + " does not exist.");
IAsyncAction MainPage::ExampleCoroutineAsync()
{
std::wstring imageName{ L"Wide310x150Logo.scale-200.png" };
// Get the path to the app's Assets folder.
std::wstring path{ Windows::ApplicationModel::Package::Current().InstalledLocation().Path() + L"\\Assets" };
// Get the folder object that corresponds to this absolute path in the file system.
Windows::Storage::StorageFolder assets{ co_await Windows::Storage::StorageFolder::GetFolderFromPathAsync(path) };
IStorageItem image{ co_await assets.TryGetItemAsync(imageName) };
std::wstring output;
if (image)
{
output = L"File: " + image.Name() + L" found \n";
}
else
{
output = L"File not found\n";
}
::OutputDebugString(output.c_str());
}
String^ imageName = "Logo.scale-140.png";
// Get the app'ss Assets folder
String^ path = Windows::ApplicationModel::Package::Current->InstalledLocation->Path + "\\Assets";
create_task(StorageFolder::GetFolderFromPathAsync(path)).then([=](StorageFolder^ assets) -> task < IStorageItem^ >
{
return create_task(assets->TryGetItemAsync(imageName));
}).then([=](IStorageItem^ image) {
String^ output = "";
if (image == nullptr)
{
output = "File not found\n";
}
else
{
//output = "File: " + image->Name + " found \n";
}
OutputDebugString(output->Begin());
});
Commenti
Chiamare il metodo TryGetItemAsync per provare a ottenere un file o una cartella in base al nome oppure per verificare se esiste un file o una cartella, senza la necessità di gestire un'eccezione FileNotFoundException. Se non è possibile trovare il file o la cartella, TryGetItemAsync restituisce Null anziché generare un'eccezione.
Chiamare il metodo IsOfType dell'interfaccia IStorageItem per determinare se l'elemento restituito è un file o una cartella.