mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
Unwrapped all /(Write|Read)All(Text|Bytes)/ functions.
This commit is contained in:
parent
581a7fe078
commit
b9a111432a
17 changed files with 36 additions and 29 deletions
|
|
@ -210,7 +210,8 @@ namespace Emby.Server.Implementations.AppBase
|
|||
{
|
||||
var file = Path.Combine(path, Guid.NewGuid().ToString());
|
||||
|
||||
FileSystem.WriteAllText(file, string.Empty);
|
||||
string text = string.Empty;
|
||||
File.WriteAllText(file, text);
|
||||
FileSystem.DeleteFile(file);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue