Hello.
I have a question.
The EXE file developed in C# will be executed on Linux.
The contents of the EXE developed in C# Windows are CSV file save to the specified path.
==>The contents of the EXE developed in C# Windows saves a CSV file in the specified path.
The path where the csv file is saved is string savepath = r“C:\folder” <=== The path on Linux will be entered into C# string as an argument.
is this possible?
Please Help me.
I have a question.
The EXE file developed in C# will be executed on Linux.
The contents of the EXE developed in C# Windows are CSV file save to the specified path.
==>The contents of the EXE developed in C# Windows saves a CSV file in the specified path.
The path where the csv file is saved is string savepath = r“C:\folder” <=== The path on Linux will be entered into C# string as an argument.
C#:
using (StreamWriter wr = new StreamWriter(" r“C:\folder” "))
{
wr.WriteLine("#TYPE,MoveSpeed");
}
is this possible?
Please Help me.