📄 program.cs
字号:
using System;
using System.Text;
using System.IO;
namespace PdfToText
{
/// <summary>
/// The main entry point to the program.
/// </summary>
class Program
{
static void Main(string[] args)
{
try
{
if (args.Length < 1)
{
DisplayUsage();
return;
}
string file = args[0];
if (!File.Exists(file))
{
file = Path.GetFullPath(file);
if (!File.Exists(file))
{
Console.WriteLine("Please give in the path to the PDF file.");
}
}
PDFParser pdfParser = new PDFParser();
pdfParser.ExtractText(file, Path.GetFileNameWithoutExtension(file)+".txt");
}
catch (Exception exc)
{
Console.WriteLine(exc);
}
}
static void DisplayUsage()
{
Console.WriteLine();
Console.WriteLine("Usage:\tpdftotext FILE");
Console.WriteLine();
Console.WriteLine("\tFILE\t the path to the PDF file, it may be relative or absolute.");
Console.WriteLine();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -