AUTOCAD • WORKSPACE AND NAVIGATION

Opening & Creating Drawings — Open existing drawings and create new drawings from templates

Master the foundational file operations that every CAD workflow begins with.

Historical Context & Motivation

Before computer-aided design (CAD) software existed, engineers and architects drafted every drawing by hand on vellum or Mylar sheets, carefully organizing physical filing cabinets to track revisions. The emergence of AutoCAD in the early 1980s fundamentally altered this workflow by converting the drawing surface into a persistent digital file — the .dwg file format. Understanding how to open existing drawings and create new ones from standardized templates is the single most essential skill in any AutoCAD session, analogous to understanding how a compiler's entry point works before writing any code. Without mastering file operations, no subsequent drafting or modeling work is possible.

1982
AutoCAD 1.0 Released
Autodesk launched AutoCAD 1.0 at COMDEX, introducing the .dwg binary file format that could store 2D geometry on floppy disks. Drawings were opened via command-line prompts.
1997
Template System Introduced
AutoCAD R14 formalized the .dwt (drawing template) file format, allowing firms to bundle layers, styles, and title blocks into reusable starting points for new drawings.
2009
Ribbon Interface & Start Tab
AutoCAD 2009 adopted the Ribbon interface, and subsequent versions introduced the Start tab with visual thumbnail previews, recent-file lists, and template galleries.
2020
Cloud & Cross-Platform Access
AutoCAD Web and Mobile allowed users to open and create .dwg files in browsers and on tablets, with cloud-synced templates via Autodesk Drive, fundamentally decoupling file access from a single workstation.

The central question this lesson addresses is straightforward yet critical: how does AutoCAD manage the lifecycle of a drawing file from the moment you open the application to the instant you begin drafting? Whether you are resuming work on an existing project or spinning up a brand-new design, the choices you make at this stage — selecting the right template, understanding unit systems, and navigating the Start tab — ripple through every subsequent command you issue.

Core Principles & Definitions

AutoCAD's file management revolves around a small set of foundational concepts. Before you ever place a line or arc, you must understand the relationship between drawing files, templates, and standards. Think of a template as analogous to a class definition in object-oriented programming: it encapsulates default configurations (layers, text styles, dimension styles, units) from which individual drawing instances are instantiated. Each new drawing inherits the template's properties but diverges as you add project-specific content.

1

DWG File (.dwg)

The native binary format storing all geometry, metadata, layers, and block definitions. This is AutoCAD's primary data artifact — the equivalent of a compiled binary in software.
2

Drawing Template (.dwt)

A special .dwg file saved with the .dwt extension. It contains preconfigured settings — units, layers, styles, and optional title-block geometry — but no project-specific content. It serves as a reusable blueprint for new drawings.
3

Start Tab & New Tab

The graphical landing page in modern AutoCAD (2016+). It provides access to recent files, template galleries, learning resources, and notifications — functioning like an IDE's welcome screen.
4

OPEN / NEW / QNEW Commands

Command-line entries for opening existing files (OPEN), creating a new drawing with a template dialog (NEW), or instantly creating a drawing from a default template (QNEW). Power users rely heavily on these for speed.
5

Drawing Units (UNITS)

The measurement system embedded in every drawing — inches, millimeters, feet, meters, or architectural fractions. The template presets these values, preventing scale mismatches when collaborating across teams.
KEY TAKEAWAY
A drawing template in AutoCAD serves the same role as a project scaffold in software engineering (think create-react-app or dotnet new): it bootstraps a consistent environment so every new drawing starts with the correct layers, styles, units, and title blocks — eliminating configuration drift across a team's deliverables.

Visual Explanation — The AutoCAD Start Tab & File Flow

The flowchart above illustrates the two primary paths from AutoCAD's Start tab: opening an existing .dwg file (left branch) or creating a new drawing from a .dwt template (right branch). Both converge on the Drawing Editor where actual drafting begins.

The diagram above captures the decision tree that every AutoCAD session traverses. Notice that the Start tab functions as a dispatcher — it routes you either toward an existing file or toward the template selection dialog. For users comfortable with the command line, the OPEN, NEW, and QNEW commands bypass the graphical interface entirely, much like invoking a CLI tool instead of navigating a GUI. The QNEW command is particularly efficient: when configured with a default template path (via the QNEW system variable in Options → Files), it instantiates a new drawing without any dialog prompt at all.

How It Works — Templates, Units, and the File System

The Anatomy of a .dwt Template File

A .dwt file is structurally identical to a .dwg file — it uses the same binary encoding, the same object database, and the same internal header. The only semantic difference is intent: a .dwt is designed to be read (not modified in place) when you invoke NEW. AutoCAD copies the template's entire object tree into a fresh in-memory drawing, then assigns the new drawing a temporary name like Drawing1.dwg. This copy-on-creation pattern ensures the template itself remains immutable — a principle that mirrors the prototype pattern in software design, where a prototypical object is cloned to produce new instances.

What a Template Encapsulates

  • Drawing Units — Linear unit type (decimal, architectural, engineering, fractional, scientific), angular unit type, and precision.
  • Layer Definitions — Named layers with preset colors, linetypes, lineweights, and plot styles, ensuring consistent visual standards.
  • Text & Dimension Styles — Font families, text heights, dimension arrow types, and tolerances baked into reusable named styles.
  • Layout Tabs & Title Blocks — Predefined paper-space layouts with viewports and company-branded border geometry.
  • System Variable Overrides — Variables like LTSCALE, DIMSCALE, and MEASUREMENT that govern how the drawing interprets and displays data.

OPEN Command Internals

When you execute OPEN (or press Ctrl+O), AutoCAD reads the selected .dwg's header to determine its version, then deserializes the binary object database into memory. If the file was saved in a newer format, AutoCAD will attempt backward-compatible reading; if it was saved in an older format, AutoCAD transparently up-converts the in-memory representation. The system variable FILEDIA (set to 1 by default) controls whether OPEN presents a graphical file browser or expects a command-line file path — a distinction that matters when writing AutoLISP or scripting batch operations.

💡 FILEDIA and Scripting
If you ever find that OPEN or NEW doesn't show a dialog box, type FILEDIA at the command prompt and set it to 1. A value of 0 suppresses all file dialogs — useful for script automation but confusing in interactive sessions.

Template Classification & Selection

AutoCAD ships with a variety of built-in templates, and organizations routinely create custom ones. Choosing the correct template at the outset prevents hours of downstream rework — much like selecting the right base Docker image prevents dependency conflicts later in a deployment pipeline. The following diagram categorizes the standard templates and maps them to their primary use cases.

AutoCAD's template ecosystem is divided into Imperial (inch-based), Metric (millimeter-based), and Custom categories. The 'iso' in a template name indicates ISO metric standards. Custom templates encode organization-specific conventions.
Common AutoCAD templates and their configurations
TemplateUnit SystemPlot StyleBest For
acad.dwtImperial (inches)Color-dependentGeneral-purpose US/imperial drafting
acadiso.dwtMetric (mm)Color-dependentGeneral-purpose ISO metric drafting
acad -Named Plot Styles.dwtImperial (inches)Named (.stb)Firms using named plot style tables
acadiso -Named Plot Styles.dwtMetric (mm)Named (.stb)ISO metric with named plot styles
Custom .dwtVariesVariesOrganization-specific standardization

Worked Example — Creating a New Drawing from a Metric Template

The following walkthrough demonstrates how to create a new drawing using a metric template, verify the unit settings, and confirm that the template's layer definitions have been inherited. This mirrors the workflow you would follow at the start of any CAD assignment.

Creating a Drawing from acadiso.dwt
1
Step 1 — Launch AutoCAD and Access the Start TabOpen AutoCAD. The Start tab appears by default, showing recent files and a large "Start Drawing" button. If the Start tab is not visible, type STARTMODE and set it to 1, then restart the application.
Start tab is displayed with template gallery accessible.
2
Step 2 — Invoke the NEW CommandPress Ctrl+N or type NEW at the command line. The "Select template" dialog box appears, listing all .dwt files in AutoCAD's template folder (typically C:\Users\<username>\AppData\Local\Autodesk\AutoCAD <version>\<lang>\Template on Windows). You can also add custom template search paths via Options → Files → Template Settings.
Template selection dialog is open.
3
Step 3 — Select the acadiso.dwt TemplateScroll through the list and select acadiso.dwt. The file description at the bottom of the dialog confirms this is a metric template using millimeters. Click Open. AutoCAD instantiates a new drawing named Drawing1.dwg with all template settings inherited.
New drawing created from acadiso.dwt — Drawing1.dwg is now the active document.
4
Step 4 — Verify UnitsType UNITS at the command line. The Drawing Units dialog should show Length Type as "Decimal" and Insertion Scale as "Millimeters." If these values are incorrect, the wrong template was selected. You can also check the system variable MEASUREMENT — it should return 1 (metric). A value of 0 indicates imperial.
Units confirmed: Decimal, Millimeters. MEASUREMENT = 1.
5
Step 5 — Inspect Layers and SaveOpen the Layer Properties Manager (LA) to confirm the template's default layers are present (at minimum, layer 0 and Defpoints). Custom templates may include dozens of predefined layers. Finally, save the drawing with Ctrl+Shift+S (Save As) to assign a meaningful file name and location.
Drawing saved as project-specific .dwg file. Template configuration verified.

Comparing File Operations — OPEN vs. NEW vs. QNEW

AutoCAD provides three distinct commands for accessing drawings, and understanding their differences is essential for an efficient workflow. Each command makes different assumptions about user intent, analogous to the distinction between git clone (OPEN — pull an existing repository), git init with a template (NEW — scaffold from a template), and a preconfigured IDE "New Project" wizard (QNEW — instant creation with defaults).

Comparison of AutoCAD's three primary file-access commands
FeatureOPEN (Ctrl+O)NEW (Ctrl+N)QNEW
PurposeOpen an existing .dwg file for editingCreate a new drawing with template selection dialogCreate a new drawing instantly using a default template
Dialog ShownFile browser (Select File)Template browser (Select Template)None (if QNEW template path is set)
Input File.dwg, .dxf, .dws.dwt (or .dwg/.dxf as template).dwt specified in Options → Files
Template Needed?NoYes — selected at invocation timeYes — preconfigured in system settings
Scripting UseCommon in batch processing scriptsRare in scripts (requires dialog interaction)Ideal for scripted workflows — no dialog interrupts
SpeedDepends on file sizeFast — templates are smallFastest — zero dialog overhead
KEY TAKEAWAY
Configure QNEW to point to your most-used template via Options → Files → Template Settings → Default Template File Name for QNEW. This turns a multi-click operation into a single command — the CAD equivalent of aliasing a complex shell command. In a production environment, QNEW can save 30–60 seconds per drawing session, which compounds significantly across hundreds of drawings in a project.

Connection to Advanced Workflows

Opening and creating drawings is only the entry point into a much richer ecosystem of file management in AutoCAD. As projects grow in complexity, understanding how these fundamental operations connect to advanced features like Sheet Set Manager, External References (XREFs), and eTransmit becomes essential for professional-grade project delivery.

How basic file operations scale into advanced project management workflows
ConceptBasic (This Lesson)Advanced Extension
File CreationNEW / QNEW from a single .dwt templateSheet Set Manager auto-creates drawings from templates with sequenced naming and metadata
Opening FilesOPEN command for a single standalone .dwgXREFs allow a master drawing to reference external .dwg files, creating a live dependency graph
Template MgmtManual template selection from file dialogCAD Standards (.dws) files enforce layer/style compliance across all drawings, with automated auditing
File SharingSave and email the .dwg fileeTransmit bundles the .dwg with all referenced fonts, images, and XREFs into a single package
AutomationManual command-line invocationAutoLISP / .NET plugins can batch-create and batch-open drawings programmatically

For computer science students, the most powerful advanced extension is programmatic file management through AutoCAD's APIs. The .NET API (accessible via C#) and AutoLISP both expose methods equivalent to OPEN, NEW, and QNEW, allowing you to write scripts that batch-create drawings from templates, inject project metadata, and enforce naming conventions — essentially treating AutoCAD as a headless service in a CI/CD-like pipeline for engineering deliverables.

Practice Problems

PROBLEM 1CONCEPTUAL
Explain the relationship between a .dwt template file and a .dwg drawing file. Why does AutoCAD use two separate file extensions for what is essentially the same binary format?
PROBLEM 2BASIC CALCULATION
You need to create a new drawing for a mechanical part dimensioned in millimeters. Which built-in AutoCAD template should you select, and what value should the MEASUREMENT system variable report after creation? Describe the steps to verify your choice.
PROBLEM 3INTERMEDIATE
Your team uses a custom template stored at \\server\cad-standards\CompanyStd.dwt. Describe how you would configure AutoCAD so that pressing Ctrl+N on any workstation automatically shows this template, and how you would configure QNEW to use it without any dialog at all.
PROBLEM 4APPLIED
You receive a .dwg file from a colleague that was saved in AutoCAD 2024 format, but your workstation runs AutoCAD 2020. When you attempt to OPEN the file, AutoCAD displays an error indicating an incompatible file version. Outline at least two strategies to resolve this issue, and explain what the SAVEAS command has to do with forward/backward compatibility.
PROBLEM 5CRITICAL THINKING
Design a custom .dwt template strategy for a software company that produces both hardware enclosure designs (metric, mechanical) and PCB layout reference drawings (imperial, electrical). Your strategy should address: (a) how many templates are needed and why, (b) what each template should contain, (c) how templates should be versioned and distributed, and (d) how QNEW should be configured for each discipline's engineers.

Lesson Summary

Every AutoCAD session begins with a file operation: either opening an existing .dwg file via the OPEN command (Ctrl+O) or creating a new drawing from a .dwt template using NEW (Ctrl+N) or QNEW. Templates serve as immutable prototypes that encapsulate drawing units, layers, text styles, dimension styles, and layout configurations, ensuring every new drawing inherits a consistent, standards-compliant starting state.

The Start tab provides a graphical entry point with recent files and template galleries, while the command line offers direct, scriptable access. Imperial templates (acad.dwt) and metric templates (acadiso.dwt) form the foundation, while custom organizational templates extend this system to encode firm-specific standards. Mastering these operations prepares you for advanced workflows involving Sheet Sets, XREFs, CAD Standards auditing, and API-driven automation.

Varsity Tutors • AutoCAD • Opening & Creating Drawings